-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
66 lines (64 loc) · 2.47 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="index.css">
<link href="https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
<title>Noah Chiu</title>
<meta name="description" content="Hello I am Noah Chiu." />
<meta property="og:type" content="profile" />
<meta property="og:title" content="Noah" />
<meta property="og:description" content="Hello I am Noah Chiu." />
<meta property="og:image" content="https://noah-chiu.github.io/MyPage/index.html" />
<body>
<nav>
<a href="index.html" class="logo">
<svg><circle cx="50%" cy="40" r="38" fill="white" /></svg>
<h1>N</h1>
</a>
<input type="checkbox" id="check">
<label for="check" class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</label>
<ul class="navbar">
<li id="active"><a href="about.html">About</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="contact.html">Contact</a></li>
<div class="animation"></div>
</ul>
</nav>
<main>
<div class="bg"></div>
<section>
<div class="about container">
<div id="profile"><a href=""></a></div>
<div id="school">
<li>Taipei Tech</li>
<li>Electrical Optical Engeneering</li>
<li>21 years old</li>
<li>guitar, computer, volleyball</li>
</div>
<div id="interest">
<img href="" src="guitar.svg"></img>
<img href="" src="computer.svg"></img>
<img href="" src="volleyball.svg"></img>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>Noah Chiu</p>
<div class="copyright">
<p>© 2020 <br><a href="https://noah-chiu.github.io/MyPage/" target="_blank">My page</a></p>
</div>
</div>
</footer>
</body>
</html>