-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.html
40 lines (37 loc) · 1.63 KB
/
sample.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
<html>
<head>
</head>
<body>
<form action="http://form195.herokuapp.com/" method="post">
<fieldset>
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your name" />
<br />
<label for="color">Favorite Color:</label>
<input type="text" id="color" name="color" placeholder="Enter your favorite color" />
<br />
<label>What tag do you want:</label>
<label>h1 <input type="radio" name="tag" value="h1"></label>
<label>h2 <input type="radio" name="tag" value="h2"></label>
<label>h3 <input type="radio" name="tag" value="h3"></label>
<label>p <input type="radio" name="tag" value="p"></label>
<label>div <input type="radio" name="tag" value="div"></label>
</fieldset>
<fieldset>
<label for="image">Image URL:</label>
<textarea id="image" name="image" placeholder="Enter the URL to your image"></textarea>
<br />
<label for="border-style">Border Style</label>
<select id="border-style" name="border-style">
<option value="solid" selected>Solid</option>
<option value="dotted">Dotted</option>
<option value="dashed">Dashed</option>
<option value="inset">Inset</option>
<option value="outset">Outset</option>
<option value="none">None</option>
</select>
<input type="submit" value="Send to server" />
</fieldset>
</form>
</body>
</html>