-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Home</title>
<style>
body {
position: relative;
}
.account-button {
position: absolute;
top: 10px;
right: 10px;
}
</style>
</head>
<body>
<h1>Welcome!</h1>
<p>My name is Kaylee, I am just a young adult trying to make the world a better place! :3</p>
<nav>
<a href="/index.html">Home</a>
<a href="/bingo/bingoSelect.html">Bingo!!!</a>
<a href="/professional/professionalLanding.html">Professional Life</a>
<a href="/robotics/robotics.html">Robotics</a>
<a href="about/about.html">About Me</a>
<a href="contact.html">Contact</a>
<a href="/drama/juniorSchoolProductions/hjs.html">Seussical!!</a>
</nav>
<!-- Add the following button for the account -->
<a href="signin.html" class="account-button">Account</a>
</body>
</html>