-
Notifications
You must be signed in to change notification settings - Fork 0
/
home page.html
107 lines (93 loc) · 1.97 KB
/
home page.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
<!DOCTYPE html>
<html>
<head>
<style>
*{
margin: 0;
padding: 0;
}
.home{
width: 1170px;
margin: auto;
}
header{
background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(hacker-2300772.jpg);
height:100vh;
background-size: cover;
background-position: center center;
position: relative;
}
.navbar{
float:right;
list-style: none;
margin-top: 30px;
}
.navbar li{
display:inline-flex;
}
.navbar li a{
color:#fff;
text-decoration: none;
padding:5px 20px;
font-size: 25px;
}
.navbar li a:hover{
background: #fff;
color:#333;
}
.logo img{
width: 100px;
float: left;
height: auto;
}
#word{
color: snow;
font-weight: 550;
position: absolute;
font-size: 10em;
overflow: hidden;
top:250px;
left:50px;
}
#word1{
left: -100%;
position: relative;
animation: anim 2s forwards 3s;
}
@keyframes anim{
from{
left: -100%;
}
to{
left: 0%;
}
}
marquee{
padding-top: 32%;
color:beige;
font-size: 40px;
}
</style>
</head>
<body>
<header>
<div class="home">
<div class="logo">
<img src="hacker-1811568.png" height="150" width="150" style="border-radius: 100%" >
</div>
<ul class="navbar">
<li><a href="#">HOME</a></li>
<li><a href="threats.html">THREATS</a></li>
<li><a href="prevention.html">PREVENTION</a></li>
<li><a href="#">SCAMS</a></li>
</ul>
</div>
<div id="word">
<div id="word1">
CYBER SECURITY
</div>
</div>
<marquee>MADE BY : BHOOPESH KHADA</marquee>
</header>
</body>
</html>