-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (74 loc) · 2.06 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
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Random Quotes</title>
<link rel="stylesheet" href="css/style.css" />
<link
href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css"
rel="stylesheet"
id="bootstrap-css"
/>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<style>
.home-newsletter {
padding: 80px 0;
background: #f84e77;
}
.home-newsletter .single {
max-width: 650px;
margin: 0 auto;
text-align: center;
position: relative;
z-index: 2;
}
.home-newsletter .single h2 {
font-size: 22px;
color: white;
text-transform: uppercase;
margin-bottom: 40px;
}
.home-newsletter .single .form-control {
height: 50px;
background: rgba(255, 255, 255, 0.6);
border-color: transparent;
border-radius: 20px 0 0 20px;
}
.home-newsletter .single .form-control:focus {
box-shadow: none;
border-color: #243c4f;
}
.home-newsletter .single .btn {
min-height: 50px;
border-radius: 0 20px 20px 0;
background: #243c4f;
color: #fff;
}
</style>
</head>
<body>
<section class="home-newsletter">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="single">
<h2>Subscribe to our Newsletter</h2>
<div class="input-group">
<input
type="email"
class="form-control"
placeholder="Enter your email"
/>
<span class="input-group-btn">
<button class="btn btn-theme" type="submit">Subscribe</button>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="js/script.js"></script>
</body>
</html>