-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 2.19 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="theme-color" content="#455A64">
<meta name="description" content="Walter Ngo, student by day, gamer by night.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Walter Ngo</title>
<link rel="stylesheet" href="css/main.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<div class="container__ribbon container__ribbon--bluegrey shadow"></div>
<div class="container__contentbox">
<div class="contentbox__content shadow">
<header class="content__header">
<h1 class="header__title header__title--large font font--light">Walter Ngo</h1>
<nav class="header__nav">
<h1 class="hidden">Navigation</h1>
<ul class="nav__ul">
<li class="nav__li"><div class="nav__container font"><a class="nav__link nav__link--cyan" id="home" href="index.html">About</a></div></li>
<li class="nav__li"><div class="nav__container font"><a class="nav__link nav__link--red" id="curriculum" href="curriculum.html">Curriculum</a></div></li>
<li class="nav__li"><div class="nav__container font"><a class="nav__link nav__link--yellow" id="contact" href="contact.html">Contact</a></div></li>
</ul>
</nav>
<div class="header__divider header__divider--cyan"></div>
</header>
<div class="content__text font">
<h3>About Me</h3>
<p>Hello! My name is Walter Ngo, and I'm currently a Software Engineering student at RMIT University.</p>
<p>I enjoy coding, going to the gym, playing games (Dota 2 anybody?), eating delicious food and going for bikerides when I'm not too sore from leg day.</p>
<p>I'm currently working on an app for Android used to track your exercise sets, reps and weight.</p>
</div>
</div>
</div>
</div>
</body>
</html>