forked from wics-uw/learn-to-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.html
40 lines (38 loc) · 984 Bytes
/
todo.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
<!doctype html>
<html>
<head>
<title>
Jessica Yuwono
</title>
<link type="text/css" rel="stylesheet" href="style.css"/>
</head>
<body>
<header>
<div id="navbar">
<div id="navbar_wrapper">
<ul>
<li><a href="index.html"><img src="logo.jpg" alt="logoofweb" height="35" width="35" align="middle"/></a>
<li><a href="about.html">About</a></li>
<!-- <li><a href="Resume.pdf">Résumé</a></li> -->
<li><a href="library.html">Projects</a>
<ul>
<li><a href="gimme.html">Gimme</a><li>
<li><a href="library.html">Library Directory</a></li>
<li><a href="todo.html">To Do List</a></li>
</ul>
</li>
<li><a href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</header>
<main>
<p>This is my to-do list with information that I found useful</p>
<p>1. Upgrading this website to parallax</p>
<p>2. Learn about Unix <a href="http://www.ee.surrey.ac.uk/Teaching/Unix/unix1.html">Link</a></p>
</main>
<footer>
</footer>
</body>
</html>