-
Notifications
You must be signed in to change notification settings - Fork 2
/
my project.html
131 lines (111 loc) · 2.84 KB
/
my project.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<style>
body{
margin: 0;
background-image:url(23245.jpg);
background-size: cover;
background-attachment: fixed;
height: 100vh;
}
ul{
float: right;
list-style-type: none;
margin-top: 25px;
}
ul li{
display: inline-block;
}
ul li a{
text-decoration: none;
color: white;
padding 5px 20px;
border: 1px solid transparent;
transition: 0.6s ease;
}
ul li a:hover{
background-color: #fff;
color: #000;
}
ul li.active a{
background-color: #fff;
color: #000;
}
.main{
max-width: 1200px;
margin: auto;
}
.title{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0,0,0,0.2);
float:left;
width:40%;
padding:30px;
text-align:center;
}
.title h1{
color: #238;
font-size: 1000%;
}
.button{
position: absolute;
top: 70%;
left: 50%;
transform: translate(-50%, -50%);
background: inherit;
}
.btn{
border: 1pxl solid black;
font-size: 40px;
padding: 10px 20px;
color: red;
text-decoration: normal;
transition: 0.6s ease;
}
.btn:hover{
background-color: #fff;
color: #000;
}
.follow{
margin-right: 50%;
}
</style>
<head>
<title> MyFirstWebPage </title>
</head>
<body >
<header>
<div class="main">
<ul>
<li class="active"><a href="https://en.wikipedia.org/wiki/Nature">About</a></li>
<li><a href="https://www.pexels.com/search/nature/">Gallery</a></li>
</ul>
</div>
<div class="title">
<h1> Nature </h1>
</div>
<div class="button">
<a href="https://www.youtube.com/watch?v=Qlpyeu-B9i8" class="btn">Watch Video</a>
<a href="https://www.nature.org/en-us/" class="btn"> Learn More</a>
</div>
<ul class"follow">
<li>
<a href="http://www.facebook.com/sharer.php?u=https://www.pexels.com/search/nature/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</li>
<a href="https://plus.google.com/share?url=https://www.pexels.com/search/nature/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/google.png" alt="Google" />
</li>
<a href="http://reddit.com/submit?url=https://www.pexels.com/search/nature" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</li>
<a href="https://twitter.com/share?url=https://www.pexels.com/search/nature/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</div>
</ul>
</header>
</body>
</html>