-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fieldset Sections</title>
<link rel="stylesheet" href="./CSS/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico?" />
<!-- Abbas Raza (CCO-116677) -->
</head>
<body>
<main>
<form action="https://example.com/subscribe.php">
<fieldset>
<legend>The First Section</legend>
<fieldset>
<legend>The First Sub-Section</legend>
<label for="FirstSectionInnerField1"
>Field 1
<input
type="text"
id="FirstSectionInnerField1"
class="formControl"
name="Field1Inner"
/>
</label>
</fieldset>
<label for="FirstSectionOuterField1"
>Field 1
<input
type="text"
id="FirstSectionOuterField1"
name="Field1Outter"
/>
</label>
</fieldset>
<fieldset>
<legend>Section II</legend>
<fieldset>
<legend>Section II-A</legend>
<label for="SecondSectionAField1"
>Field 1
<input
type="text"
id="SecondSectionAField1"
name="Field1SectionIIA"
/>
</label>
</fieldset>
<fieldset>
<legend>Section II-B</legend>
<label for="SecondSectionBField1"
>Field 1
<input
type="text"
id="SecondSectionBField1"
name="Field1SectionIIB"
/>
</label>
</fieldset>
</fieldset>
<button id="Go">GO! GO! GO!</button>
</form>
</main>
</body>
</html>