-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnform.html
More file actions
32 lines (32 loc) · 1.24 KB
/
nform.html
File metadata and controls
32 lines (32 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<title>Forms Test Page</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="container">
<form id="contact" action="" method="post" data-netlify="true">
<h3>Quick Contact</h3>
<fieldset>
<input placeholder="Your name" name="name" class="form-control m-1" type="text" tabindex="1" autofocus>
</fieldset>
<fieldset>
<input placeholder="Your Email Address" name="email" class="form-control m-1" type="email" >
</fieldset>
<fieldset>
<input placeholder="Your Phone Number" name="phoneno" class="form-control m-1" type="tel">
</fieldset>
<fieldset>
<input placeholder="Your Web Site starts with http://" name="url" class="form-control m-1" type="url">
</fieldset>
<fieldset>
<textarea placeholder="Type your Message Here...." name="msg" class="form-control m-1"></textarea>
</fieldset>
<fieldset>
<button class="btn btn-primary" name="submit" type="submit" id="contact-submit" data-submit="...Sending">Submit</button>
</fieldset>
</form>
</div>
</body>
</html>