-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
101 lines (99 loc) · 3.22 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<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"
type="text/css"
media="screen"
href="./stylesheets/form.css"
/>
<title>Document</title>
</head>
<body>
<div class="container">
<div class="row form_row">
<div class="form_content">
<header>
<h1>Contact form</h1>
<p>
Please fill in your information and we'll be sending your order in
time
</p>
</header>
<form>
<div class="form_section_1">
<div class="label">
<label for="name">Your name:</label>
</div>
<div class="form_section_input">
<input type="text" id="name" placeholder="First Name" />
<input type="text" id="name" placeholder="Last Name" />
</div>
</div>
<div class="form_section_2">
<div class="label">
<label for="email">Your Email:</label>
</div>
<div class="form_input_mail">
<input
type="text"
id="email"
placeholder="e.g [email protected]"
/>
</div>
</div>
<div class="form_section_3">
<div class="label">
<label for="number">Phone:</label>
</div>
<div class="form_input_phone">
<input type="text" id="number" placeholder="###" />
<input type="text" id="number" placeholder="###" />
<input type="text" id="number" placeholder="###" />
</div>
</div>
<div class="form_select">
<div class="label">
<label>Message Subject:</label>
</div>
<div class="select">
<select>
<option>Other</option>
<option>Option1</option>
<option>Option2</option>
</select>
</div>
</div>
<div class="form_section_4">
<div class="label">
<label for="text">Message:</label>
</div>
<div>
<input id="text" type="text" />
</div>
</div>
<div class="form_section_5">
<div class="label">
<label for="gender">Choose your gender:</label>
</div>
<div class="radio_input">
<input type="checkbox" id="gender" value="male" />Male
<input type="checkbox" id="gender" value="female" />Female
</div>
</div>
<button type="submit">Submit
</form>
</div>
</div>
</div>
</body>
</html>