-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
50 lines (48 loc) · 1.3 KB
/
form.html
File metadata and controls
50 lines (48 loc) · 1.3 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My page - Form</title>
<link rel="stylesheet" type="text/css" href="nw.css">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<h2>To discuss your creative project requirements, image library development or editorial opportunities on The Wandering Lens, please use this form or the email address below.</h2>
</body>
<form>
<fieldset>
<legend>Feedback form:</legend>
<div class="container">
<div class="row">
<div class="col-25">
<label for="name">Name: </label>
</div>
<div class="col-75">
<input type="text" name="name" >
</div>
</div>
<div class="row">
<div class="col-25">
<label for="number">Number:</label>
</div>
<input type="numberInput" name="number">
</div>
<div class="row">
<div class="col-25">
<label for="email address">Email:</label>
</div>
<input type="email" name="email" >
</div>
<div class="row">
<div class="col-25">
<label for="send">Send an SMS:</label>
</div>
<div class="col-75">
<input id="subject" type="text" name="send" value="send an sms.." >
</div>
</div>
</div>
<input type="Submit" name="" value=" Submit" onsubmit="return validateform()">
</fieldset>
</form>
</html>