forked from wics-uw/learn-to-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
46 lines (44 loc) · 991 Bytes
/
resume.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
<!doctype html>
<!-- comments look like this -->
<html>
<head>
<title>
Naomi Koo's website!
</title>
<!-- <link rel.../> tag goes here. -->
</head>
<style>
h1 {
display: block;
font-size: 2em;
margin-top: 0.67em;
margin-bottom: 0.67em;
margin-left: 0;
margin-right: 0;
font-weight: bold;
align: center;
}
</style>
<body>
<header> <!-- stuff that never changes (site name, navigation) -->
<h1 align="center">Naomi Koo</h1>
<div> <!-- navigation section -->
<p></p>
<p></p>
<span align="center"><a href="about.html">About Me</a></span>
<span><a href="resume.html">I redirect here. You can click me if you want.</a></span>
</div>
</header>
<main> <!-- stuff that changes on every page -->
<div>
<p></p>
<p></p>
<li><span><a href="questionmark.html">Simple game made using Javascript and HTML5 Canvas</li>
<li>There's nothing here...for now.</li>
</ul>
</div>
</main>
<footer>
</footer>
</body>
</html>