-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (94 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<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"
/>
<link rel="stylesheet" href="./style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="container mt-3">
<br />
<h1>Contact Us</h1>
<br />
<form action="/formFillUp" method="POST">
<div class="form-row">
<div class="form-group col-md-6">
<label for="inputName" style="font-size: 23px">Name</label>
<input type="text" class="form-control" id="name" name="name" />
</div>
<div class="form-group col-md-6">
<label for="inputReason" style="font-size: 23px"
>Reason for contacting</label
>
<input type="text" class="form-control" id="reason" name="reason" />
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="inputEmail" style="font-size: 23px">Email</label>
<input
type="email"
class="form-control"
id="inputEmail"
name="email"
/>
</div>
<div class="form-group col-md-6">
<label for="inputPhone" style="font-size: 23px">Phone</label>
<input
type="text"
class="form-control"
id="inputPhone"
name="phone"
/>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="inputCity" style="font-size: 23px">City</label>
<input
type="text"
class="form-control"
id="inputCity"
name="city"
/>
</div>
<div class="form-group col-md-6">
<label for="inputState" style="font-size: 23px">State</label>
<input
type="text"
class="form-control"
id="inputState"
name="state"
/>
</div>
</div>
<div class="form-group">
<label for="inputAddress" style="font-size: 23px">Address</label>
<input
type="text"
class="form-control"
id="inputAddress"
name="addressline"
/>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</body>
</html>