-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (61 loc) · 2.04 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>Grace Swenson Hollis' Website</title>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/aboutMe.html">About Me</a></li>
<li><a href="https://github.com/Grimmgirl-Fandom">Github</a></li>
<li><a href="https://www.linkedin.com/in/grace-swenson-hollis-017b35228/">Linkedin</a></li>
<li><a href="https://www.youtube.com/channel/UCujg1n70NBg_nANWD-LcXsQ">YouTube</a></li>
</ul>
<!-- Style and all that fun stuff -->
<!-- If you are reading this hello! I like my comments to be kind of quirky :) -->
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #fd77c2;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size:30px;
}
li a:hover {
background-color: #e20380;
text-decoration: underline;
}
button{
text-align: center;
padding: 100px 100px;
font-size:45px;
width: 350px;
border: 15px;
border-style:dotted;
border-color:#fd77c2;
margin: 150px;
background-color:white;
}
button:hover{
background-color: #fd77c2;
color:white;
}
</style>
</head>
<body>
<h1>Hello! Welcome to my website</h1>
<p>
I'm sure everything on here is pretty ugly right now, but that's all right!
<br>It's all part of the journey.
</p>
</body>
</html>