-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubscribe.html
More file actions
75 lines (71 loc) · 2.15 KB
/
subscribe.html
File metadata and controls
75 lines (71 loc) · 2.15 KB
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
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Subscribe</title>
<link rel="stylesheet" href="subscribe.css" />
<link rel="stylesheet" href="contact.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@700&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/8d0d750b59.js"
crossorigin="anonymous"
></script>
</head>
<body>
<nav class="navbar">
<div class="navbar__container">
<a href="/" id="navbar__logo"
><i class="fas fa-microchip"></i> LESTECH</a
>
<div class="navbar__toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="/" class="navbar__links">Home</a>
</li>
<li class="navbar__item">
<a href="/blog.html" class="navbar__links">Blog</a>
</li>
<li class="navbar__item">
<a href="/" class="navbar__links">About Us</a>
</li>
<li class="navbar__item">
<a href="/ContactUS.html" class="navbar__links">Contact Us</a>
</li>
<li class="navbar__btn">
<a href="/" class="button">Subscribe</a>
</li>
</ul>
</div>
</nav>
<header>
<h1>Subscribe</h1>
</header>
<section class="container">
<form id="my-form">
<h1>Add User</h1>
<div class="msg"></div>
<div>
<label for="name">Name:</label>
<input type="text" id="name" />
</div>
<div>
<label for="email">Email:</label>
<input type="text" id="email" />
</div>
<input class="btn" type="submit" value="Submit" />
</form>
<ul id="users"></ul>
</section>
<script src="app.js"></script>
</body>
</html>