-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
63 lines (56 loc) · 2.07 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-114596253-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-114596253-1');
</script>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="css/form.css">
</head>
<body>
<center><h1>StyleWell Interiors</h1></center>
<hr>
<div class="wrapper">
<center><h2>Contact Form</h2></center>
<div id="username_div">
<label>Username</label> <br>
<input type="text" name="username" class="textInput" placeholder="Enter your name">
<div id="name_error"></div>
</div>
<div id="email_div">
<label>Email</label> <br>
<input type="email" name="email" class="textInput" placeholder="Enter your Email">
<div id="email_error"></div>
</div>
<div id="Address">
<label>Address</label><br>
<textarea name="" cols="20" rows="4" placeholder="Enter your Address"></textarea>
</div>
<div>
<label>Category</label><br>
<input type="radio" name="area" value="living space">Living space<br>
<input type="radio" name="area" value="kitchen">Kitchen <br>
<input type="radio" name="area" value="terrace">Terrace<br>
</div>
<div>
<label>Select the area of your Square feet</label><br>
<input type="radio" name="area" value="500-1000">500-1000<br>
<input type="radio" name="area" value="1000-1500">1000-1500 <br>
<input type="radio" name="area" value="1500-20000">1500-20000 <br>
<input type="radio" name="area" value="20000-25000">20000-25000 <br><br>
</div>
<div>
<label>Description</label>
<textarea name="" id="" cols="30" rows="5" placeholder="Description of what type of designing you want"></textarea>
</div>
<div>
<center><a href="#">Submit</a></center>
</div>
</body>
</html>