forked from wics-uw/learn-to-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
46 lines (42 loc) · 1018 Bytes
/
template.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
<!doctype html>
<html>
<head>
<title>
Jessica Renata Yuwono
</title>
<link type="text/css" rel="stylesheet" href="style.css"/>
</head>
<body>
<header>
<div id="navbar">
<div id="navbar_wrapper">
<ul>
<li><img src ='logo.jpg'/></li>
<li><a href="index.html">About</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="project.html">Projects</a>
<ul>
<li><a href="library.html">Library Directory</a></li>
</ul>
</li>
<li><a href="contact.html">Contact</a>
<ul>
<li><a href="ca.linkedin.com/in/jryuwono">LinkedIn</a></li>
<li><a href="github.com/jrywn">Github</a></li>
</ul>
</li>
</ul>
</div>
</div>
</header>
<main>
<p>I am studying Computer Science (Honours, Co-op) at University of Waterloo</p>
<p></p>
</main>
<footer>
</footer>
<!-- <img src='images.jpg'/>
<img src='http://www.clipartlord.com/wp-content/uploads/2013/06/cat4.png'/> -->
</body>
</html>