-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (43 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="../images/favicon-32x32.png" type="image/x-icon">
<title>Simple web</title>
</head>
<body>
<main>
<section class="container">
<img class="img2" src="../images/logo.svg" alt="logo">
<div class="launce">
<h2>We are launching <strong>soon!</strong></h2>
</div>
<div class="notify">
<p>Subscribe and get notified</p>
<form >
<input type="email" name="email" placeholder="Your email address" class="email">
<button type="submit">Notify Me</button>
</form>
</div>
<div class="img">
<img src="../images/illustration-dashboard.png" alt="illustration-dashboard">
</div>
<footer>
<div class="footer">
<img src="../images/facebook-f-brands.svg" alt="facebook">
</div>
<div class="footer">
<img src="../images/twitter-brands.svg" alt="twitter">
</div>
<div class="footer">
<img src="../images/instagram-brands.svg" alt="instagram">
</div>
<p>© Copyright Allrights Reserverd</p>
</footer>
</section>
</main>
</body>
</html>