-
Notifications
You must be signed in to change notification settings - Fork 0
/
Subscribe.html
50 lines (48 loc) · 2.33 KB
/
Subscribe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weekly Newsletter Subscription</title>
<link rel="stylesheet" href="Subscribe.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
</head>
<body>
<nav class="nav1">
<ul>
<li><a href="./Looks.html">Looks</a></li>
<li><a href="./mens.html">Shop</a></li>
<li><button onclick="location.href='Home.html'"><p>Fashion Blog</p></button></li>
<li><a href="./Subscribe.html" class="line">Subscribe</a></li>
<li><button onclick=""><i class="bi bi-instagram"></i></button></li>
<li><button><i class="bi bi-pinterest"></i></button></li>
<li><button onclick="location.href='Contact.html'"><i class="bi bi-envelope-open"></i></button></li>
</ul>
</nav>
<div class="contact-container">
<form action="https://api.web3forms.com/submit" method="post" class="contact-left">
<div class="contact-left-title">
<h2>Subscribe</h2>
<h3>For Weekly Newsletters</h3><br>
<hr>
</div>
<input type="hidden" name="access_key" value="203cc600-fe4f-4ead-b6ba-33e8df23bcef">
<input type="text" name="name" placeholder="Your Name" class="contact-inputs" required>
<input type="email" name="name" placeholder="Your Email" class="contact-inputs" required>
<button type="submit">Subscribe<img src="arrow_icon.png" alt=""></button>
</form>
</div>
<nav class="nav2">
<ul>
<li><button onclick=""><i class="bi bi-instagram"></i></button></li>
<li><button><i class="bi bi-search"></i></button></li>
<li><button><i class="bi bi-envelope-open"></i></button></li>
<li><button onclick="location.href='Home.html'"><p>FASHION BLOG</p></button></li>
<li><a href="./About.html">ABOUT</a></li>
<li><a href="./Contact.html">CONTACT</a></li>
<li><a href="./Policy.html">POLICY</a></li>
</ul>
</nav>
</body>
</html>