-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
63 lines (59 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://kit.fontawesome.com/9a00dfd817.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css" />
<title>Coming Soon Website</title>
</head>
<body>
<header>
<a href="#" class="logo">Brand Name</a>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
</header>
<section>
<img src="img/curve.png" alt="" class="wave" />
<div class="contentBx">
<h2>Coming Soon</h2>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Atque
provident ad harum laudantium eligendi officiis tempora ea alias dicta
dolorem odit cumque sit voluptatem soluta non debitis
</p>
<a href="#" class="btn" onclick="toggle();">Notify Me!</a>
</div>
<div class="imgBx">
<img src="img/man.png" alt="" />
</div>
<div class="action" onclick="actionToggle();">
<span>+</span>
<ul>
<li><i class="fab fa-facebook-f"></i></li>
<li><i class="fab fa-twitter"></i></li>
<li><i class="fab fa-instagram"></i></li>
<li><i class="fab fa-pinterest-p"></i></li>
<li><i class="fab fa-linkedin-in"></i></li>
</ul>
</div>
</section>
<div class="newsletter">
<a href="#" onclick="toggle();" class="close"><i class="fas fa-times"></i></a>
<h2>Stay Tuned</h2>
<p>Get notified at launch</p>
<div class="inputBox">
<form>
<input type="email" required placeholder="Enter Email Address" />
<input type="submit" value="Submit" />
</form>
</div>
</div>
<script src="main.js"></script>
</body>
</html>