-
Notifications
You must be signed in to change notification settings - Fork 0
/
mockup-4.html
48 lines (46 loc) · 935 Bytes
/
mockup-4.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mockup-4</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<form action="">
<table>
<thead>
<tr>
<td>Your Information</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<label for="name">Name:</label>
<input type="text" id="name">
</td>
</tr>
<tr>
<td><label for="mail">E-Mail:</label>
<input type="email" id="mail"></td>
</tr>
<tr>
<td><label for="phone">Phone:</label>
<input type="text" id="phone"></td>
</tr>
<tr>
<td><input type="radio" name="group1" value="1">From San Francisco</td>
<td><input type="radio" name="group1" value="0">Not From San Francisco</td>
<td></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td><button type="submit">Submit</button></td>
</tr>
</tbody>
</table>
</form>
</body>
</html>