forked from wics-uw/learn-to-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (26 loc) · 786 Bytes
/
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
<!doctype html>
<!-- comments look like this -->
<html>
<head>
<title>
Dana's web
</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header> <!-- stuff that never changes (site name, navigation) -->
<h1>Dana Kenzhaliyeva</h1>
<div> <!-- navigation section -->
<span><a href="https://www.linkedin.com/pub/dana-kenzhaliyeva/45/1aa/340">LinkedIn</a></span>
<span><a href="Resume Dana Kenzhaliyeva.pdf">Resume</a></span>
<span><a href="https://github.com/dkenzhal">Github</a></span>
</div>
</header>
<main> <!-- stuff that changes on every page -->
<p1>Candidate for Bachelor of Computer Science at the University of Waterloo </p1>
<p>(This site is under construction)</p>
</main>
<footer>
</footer>
</body>
</html>