Open in github.dev
Open in a new github.dev tab
Open in codespace
/
index.html
154 lines (142 loc) · 5.95 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html>
<head>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
/>
<meta charset="UTF-8" />
<title>Pinger</title>
<!-- To Set Title Bar Icon Image -->
<link rel="icon" href="contact.png" type="image/icon png">
<link href="https://unpkg.com/cirrus-ui" type="text/css" rel="stylesheet" />
<link href="style.css" type="text/css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=Nunito+Sans:200,300,400,600,700"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Montserrat:400,700"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Oswald"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<script
src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"
></script>
</head>
<body>
<div class="hero fullscreen">
<div class="hero-body">
<div style="margin: auto;">
<form class="frame p-0" method="post">
<div class="frame__body p-0">
<div class="row p-0 level fill-height">
<div class="col">
<div class="space xlarge"></div>
<div class="padded">
<h1 class="u-text-center u-font-alt">Contact Us</h1>
<div class="divider"></div>
<p class="u-text-center">
Latest Books Available in Library To Pre-order, Contact us now .
</p>
<div class="divider"></div>
<div class="form-group">
<label class="form-group-label">
<span class="icon">
<i class="fa-wrapper far fa-user"></i>
</span>
</label>
<input
type="text"
class="form-group-input"
placeholder="Enter your name"
/>
</div>
<div class="form-group">
<label class="form-group-label">
<span class="icon">
<i class="fa-wrapper far fa-envelope"></i>
</span>
</label>
<input
type="email"
class="form-group-input"
placeholder="Enter your email"
/>
</div>
<div class="form-section section-inline">
<div class="section-body row">
<div class="form-group col-6 pl-0">
<label class="form-group-label">
<span class="icon">
<i class="fa-wrapper far fa-calendar"></i>
</span>
</label>
<input
type="date"
class="form-group-input"
placeholder="Enter your birthday (or not)"
/>
</div>
<div class="form-group col-6 pr-0">
<label class="form-group-label">
<span class="icon">
<i class="fa-wrapper fas fa-list"></i>
</span>
</label>
<select
class="select form-group-input"
placeholder="Choose one"
>
<option>Order</option>
<option>Enquiry</option>
<option>Request</option>
</select>
</div>
</div>
</div>
<textarea placeholder="Leave us a note."></textarea>
<div class="form-ext-control form-ext-checkbox">
<input
id="check1"
class="form-ext-input"
type="checkbox"
/>
<label class="form-ext-label" for="check1"
>I Agree Terms & Conditions</label
>
</div>
<div class="space"></div>
<div class="btn-group u-pull-right">
<button class="btn-info">Book </button>
</div>
</div>
<div class="space xlarge"></div>
</div>
</div>
</div>
</form>
<footer id="foot" style="color: #000; font-family: 'Roboto'; position: relative !important; top: 70px !important">
<p align="center" style="font-size: 19px !important;">
<script>document.write(new Date().getFullYear());</script> © Made with ❤️ & CSS<br> <img src="signb.png" style="height: 65px; position: absolute; left: 27.5%; top: 24px;" id="jock"> <a href="https://github.com/BlesslinJerishR/" target="_blank" rel="nofollow noopener" style="text-decoration: none !important;"><span style="color: #000;">Blesslin Jerish R </span></a>
</p>
</footer>
</div>
</div>
</div>
</body>
</html>