-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (52 loc) · 1.71 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<head>
<title>Home</title>
<meta name="keywords" content="Kristin Lau, Portfolio, IT, MIS">
<meta name="description" content="Portfolio of IT/MIS major, Kristin Lau">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles/portfolio_styles.css" rel="stylesheet"/>
<link href="styles/index_styles.css" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css?family=Bungee+Inline|Raleway" rel="stylesheet">
</head>
<body>
<header>
<nav class="horizontal">
<ul>
<li class="active">
<a href="index.html">Home</a>
</li>
<li>
<a href="pages/about.html">About</a>
</li>
<li class="dropdown">
<a class="dropbtn" onclick="myFunction()">Goals</a>
<div id="content" class="dropdown-content">
<a href="pages/goal1.html">Goal 1</a>
<a href="pages/goal2.html">Goal 2</a>
<a href="pages/goal3.html">Goal 3</a>
<a href="pages/goal4.html">Goal 4</a>
<a href="pages/goal5.html">Goal 5</a>
<a href="pages/goal6.html">Goal 6</a>
<a href="pages/goal7.html">Goal 7</a>
</div>
</li>
<li>
<a href="pages/contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<section>
<article>
<h2>Welcome to my</h2>
<img src="images/welcome.jpg" alt="Welcome image">
<h2>Portfolio</h2>
</article>
</section>
<script src="styles/dropdown.js"></script>
<audio controls autoplay>
<source src="files/bgm.mp3" type="audio/mpeg" title="Sparkle by Radwimps" loop="infinite">
Your browser does not support the audio element.
</audio>
</body>
</html>