-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 866 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
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en-US">
<script src="js/main.js">
</script>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lev Zurcher's Portfolio</title>
</head>
<style>
#portfolio_title {
font-size: 32pt;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#portfolio_author {
font-size: 20pt;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#table_contents {
font-size:16pt;
}
.banner {
background-color: rgba(39, 100, 198, 0.361);
}
</style>
<body onload="createList()">
<div class="banner">
<section>
<span id="portfolio_title">WDD 330</span><br>
<span id="portfolio_author">Lev Zurcher</span>
</section>
</div>
<ol id="table_contents"></ol>
</body>
</html>