-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleisure.html
69 lines (58 loc) · 2.6 KB
/
leisure.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<body style="background-color:powderblue;" onload="myFunction()">
<h1>Hobby and Leisure Activity</h1>
<img src="pics/fun/tate_modern.jpg" alt="Tate Modern London">
<section>
<h2>Memberships:</h2>
<ul>
<li><a href="https://www.tate.org.uk/">Tate</a>
<li><a href="https://www.nationaltrust.org.uk/">(UK) National Trust</a>
<li><a href="https://www.english-heritage.org.uk/">English Heritage</a>
<li><a href="https://www.mplus.org.hk/en/">M+</a>
<li><a href="https://www.bu.edu/alumni/">Boston University Alumni Association</a>
<li><a href="https://www.alumni.psu.edu/">Penn State Alumni Association</a>
<li><a href="https://alumni.umd.edu/">University of Maryland Alumni Association</a>
</ul>
</section>
<a href="https://www.echigo-tsumari.jp/en/art/artwork/the_last_class/"></a><img src="pics/fun/IMG_1314.jpg" width="50%" height="50%" alt="The Last Class"></a>
<img src="pics/fun/IMG_1961.jpg" width="50%" height="50%" alt="I M Pei exhbit at Hong Kong">
<section>
<h2>The Arts:</h2>
<ul>
<li>Supporter and frequent visitor of art museums
<li>Classical music events: Wiener Staatsoper, Hong Kong Philharmonic, Bayreuther Festspiele
<li>West End Shows: The Phantom of the Opera, The Mousetrap by Agatha Christie, The Book of Mormon
<li>William Shakesphere: Much Ado About Nothing, Macbeth, The Taming of the Shrew
<li>Others: Kodo, Cirque du Soleil, Video Game Music concerts
</ul>
<h2>Gaming:</h2>
<ul>
<li>Former Magic:The Gathering player with tournament experience
<li>Final Fantasy XI player - Cerberus
<li>Final Fantasy XIV player - <a href="https://eu.finalfantasyxiv.com/lodestone/character/3977715/">player profile on Alexander@Gaia DC</a>
</ul>
<h2>Anime and Manga:</h2>
<ul>
<li>Contributor and member of FSU Japanese Animation Club of Tallahassee (JACT) and <a href="https://tallahasseeanime.com/">FSU Freecon</a>
<li>Worked on various manga and anime fansub projects in the late 1990s/early 2000s
</ul>
<h2>Sports and Outdoor Activities:</h2>
<ul>
<li>Various Met Office sport activities
<li>Inactive member of <a href="https://worldtangsoodo.com/">World Tang Soo Do Association (WTSDA)</a> -- last trained in a studio in Fairfax county
<li>Some experience with Aikido
<li>Member of National Trust, and frequent vistor to NT properties and other public gardens
</ul>
</section>
<hr class="solid">
<p>Return to <a href="/">index page</a></p>
<p>This is last updated on <span id="LastUpdate"></span></p>
<script>
function myFunction() {
var x = document.lastModified;
document.getElementById("LastUpdate").innerHTML = x;
}
</script>
</body>
</html>