-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Email Template</title>
</head>
<body>
<h1>Contact us</h1>
<p>Send a message and we will get back to you within 24 hours.</p>
<form class="contact-form">
<label for="">Name</label><br />
<input class="name" type="text" placeholder="Name" /><br />
<label for="">Email</label><br/>
<input class="email" type="email" placeholder="Email" /><br />
<label for="">Phone</label><br />
<input class="phone" type="text" placeholder="Phone number" /><br />
<label for="">Message</label><br />
<textarea class="message" name="" id="" cols="30" rows="5" placeholder="Your Query"></textarea><br />
<button type="submit">Submit</button>
</form>
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase.js"></script>
<script src="app.js"></script>
</body>
</html>