-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<title>NEW WORLD ORGANIZATION</title>
<style>
body {
margin: 0;
padding: 0;
background-image: url('first_image.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
font-family: Arial, sans-serif;
}
.overlay {
background-color: rgba(0, 0, 0, 0.5);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.content {
text-align: center;
position: relative;
padding-top: 100px;
}
.heading {
font-size: 36px;
color: white;
margin-bottom: 20px;
}
.subheading {
font-size: 18px;
color: white;
margin-bottom: 40px;
}
.button {
padding: 10px 20px;
background-color: #3498db;
color: white;
font-size: 16px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<div class="overlay"></div>
<div class="content">
<h1 class="heading">Welcome to NWO</h1>
<p class="subheading">Discover the Amazing World of NWO</p>
<a href="explore.html" class="button">Explore Now</a>
</div>
</body>
</html>