-
Notifications
You must be signed in to change notification settings - Fork 0
/
about_me.html
74 lines (74 loc) · 2.78 KB
/
about_me.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
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Xuan Tuan Nguyen - About me</title>
<link href="styleme.css" rel="stylesheet"/>
</head>
<body>
<section>
<h1>About <em>Xuan Tuan Nguyen</em> - 😀😁😄</h1>
<p>My name is Xuan Tuan Nguyen - I'm a Java full-stack developer.</p>
</section>
<section>
<h1>My classes this quarter (Spring 2021):</h1>
<ul>
<li>Web Application Programming - CS472 - WAP</li>
<li>Pt2 Leadership for Tech Managers - STC506B - STC2</li>
<li>Algorithms - CS435</li>
<li>Advanced Software Development - CS525 - ASD</li>
<li>Web Application Architecture - CS545 - WAA</li>
</ul>
</section>
<section>
<h1>My favourite movies:</h1>
<ol>
<li>One piece <a href="https://www.imdb.com/title/tt0388629/" target="_blank">IMDB</a>
<dl>
<dt>Creator</dt>
<dd>Eiichiro Oda</dd>
<dt>Genres</dt>
<dd>Animation | Action | Adventure | Comedy | Fantasy</dd>
<dt>Taglines</dt>
<dd>I am Monkey D. Luffy. The man who is gonna be The King of The Pirates.</dd>
<dt>Plot Keywords</dt>
<dd>Plot Keywords: pirate | anime | treasure | navigator | doctor | <a
href="https://www.imdb.com/title/tt0388629/keywords?ref_=tt_stry_kw" target="_blank">See All (60) »</a>
</dd>
</dl>
</li>
<li>Ironman <a href="https://www.imdb.com/title/tt0371746/" target="_blank">IMDB</a></li>
<li>Harry Potter <a href="https://www.imdb.com/title/tt0241527/" target="_blank">IMDB</a></li>
<li>Frankie stank <a href="https://www.imdb.com/title/tt1976009/" target="_blank">IMDB</a></li>
</ol>
</section>
<section id="mood">
<h1>My moods:</h1>
<div>
<span>Happy: </span><img class="mood" src="my_family.jpg" alt="happy"/>
<span>Positive: </span><img id="positive" class="mood" src="positive.jpg" alt="Positive"/>
</div>
</section>
<section>
<h1>Fun facts about my neighbours:</h1>
<ul>
<li><em>Vu Viet Nguyen</em>: <q>He does not like programing any more.</q></li>
<li><em>Hai Dang Nguyen</em>: <q>407 master chef.</q></li>
</ul>
</section>
<footer style="margin-top: 2em">
<a href="/">Home</a>
<br />
<script>
let encodedCurrentUrl = encodeURIComponent(window.location);
</script>
<a href="javascript:void(window.open('https://validator.w3.org/check?uri='+encodedCurrentUrl, '_blank'));">
<img src="w3c-html.png" alt="html validator" referrerpolicy="no-referrer-when-downgrade">
</a>
<a href="javascript:void(window.open('https://jigsaw.w3.org/css-validator/validator?uri='+encodedCurrentUrl, '_blank'));">
<img src="w3c-css.png" alt="css validator" referrerpolicy="no-referrer-when-downgrade" width="88" height="31">
</a>
</footer>
</body>
</html>