-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (40 loc) · 805 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
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Housecat the Band</title>
<link href="main.css" rel="stylesheet" type="text/css">
<style type="text/css">
.welcome {
text-align: center;
margin: auto;
color: white;
width: 75%;
position: relative;
top: 30px;
padding-top: 10px;
}
.enter {
list-style-type: none;
position: relative;
bottom: 35px;
top: 3px;
}
.enter p {
border: 3px solid white;
display: inline;
padding-left: 10px;
padding-right: 10px;
padding-top: 3px;
padding-bottom: 3px;
}
</style>
</head>
<body>
<div class="welcome">
<p style="font-size: 70px"> WELCOME TO HOUSECAT</p>
<div class="enter">
<li><a href="home.html" class="nav-links"><p style="font-size: 40px">ENTER</p></a></li>
</div>
</div>
</body>
</html>