-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome1.html
66 lines (65 loc) · 1.18 KB
/
home1.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
<!DOCTYPE html>
<html>
<head>
<title>home</title>
<style>
.parallax
{
background-image: url('q2.jpg');
min-height: 1000px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
div
{
background-image:url('photo.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.hi
{
background-image:url('i.jpg');
background-repeat:no-repeat;
background-size:cover;
}
.hello
{
background-image:url('eye.png');
background-repeat:no-repeat;
background-size:cover;
font-size:25px;
color:white;
}
a
{
background-color:transparent;
color: white;
font-size:25px;
padding: 25px 40px;
text-align: center;
text-decoration: none;
display: inline-block;
}
body
{
background-color:black;
}
</style>
</head>
<body>
<div class="hi" style="height:1000px;">
<a href="home1.html">HOME</a>
<a href="log1.html">LOG IN</a>
<a href="team1.html">TEAM</a>
<a href="about.html">ABOUT</a>
</div>
<div class="parallax"></div>
<div style="height:500px; color:white; font-size:36px;">
<h1>So...We are coming up with....</h1>
</div>
</div>
</body>
</html>