-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.84 KB
/
Copy pathindex.html
File metadata and controls
38 lines (37 loc) · 1.84 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
<!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">
<title>Weather Alert</title>
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.bundle.min.js">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js">
</head>
<body>
<section class="subscription bg-white">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="subscription-wrapper">
<div class="d-flex subscription-content justify-content-between align-items-center flex-column flex-md-row text-center text-md-left">
<h3 class="flex-fill">Subscribe Your Email</h3>
<form action="/" method="post" class="row flex-fill">
<div class="col-lg-7 my-md-2 my-2">
<input type="email" class="form-control px-4 border-0 w-100 text-center text-md-left" id="email" placeholder="Your Email" name="email"><br>
<input type="text" class="form-control px-4 border-0 w-100 text-center text-md-left" id="name" placeholder="Your Name" name="name"><br>
</div>
<div class="col-lg-5 my-md-2 my-2">
<button type="submit" class="btn btn-primary btn-lg border-0 w-100">Subscribe Now</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>