-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (66 loc) · 2.29 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
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Special Design | with Elzero</title>
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/master.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap">
<script src="dist/master.js" defer></script>
</head>
<body>
<!-- Start settings box -->
<div class="settings-box">
<div class="togglle-settings">
<i class="fa fa-gear"></i>
</div>
<div class="settings-container">
<div class="option-box">
<h4>Colors</h4>
<ul class="colors-list">
<li class="active" data-color="#FF9800"></li>
<li data-color="#E91E36"></li>
<li data-color="#009688"></li>
<li data-color="#03A9F4"></li>
<li data-color="#4CAf50"></li>
</ul>
</div>
<div class="option-box">
<h4>Random Background</h4>
<div class="random-backgrounds">
<span class="yes active" data-background="yes">Yes</span>
<span class="no" data-background="no">No</span>
</div>
</div>
</div>
</div>
<!-- End settings box -->
<!---------------------->
<!-- start landing page -->
<div class="landing-page">
<!-- overlay -->
<div class="overlay"></div>
<!-- header area -->
<div class="header-area">
<div class="logo">Special Design</div>
<ul class="links">
<li><a href="#" class="active">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Servers</a></li>
<li><a href="#">Product</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<!-- interoduction text -->
<div class="introduction-text">
<h1>We are <span>createive</span> agensy</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloremque quod vero illo quis.</p>
</div>
</div>
<!-- start landing page -->
<!---------------------->
<!---------------------->
</body>
</html>