forked from CodeYourFuture/Module-Onboarding
-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (88 loc) · 2.32 KB
/
index.html
File metadata and controls
97 lines (88 loc) · 2.32 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>My form exercise</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<header>
<h1>J-Linx Enterprise</h1>
</header>
<main>
<form>
<p>Please fill in the form below:</p>
<form action="#" method="post">
<div>
<label for="fullName">Full name</label>
<input
type="text" placeholder="Joseph Ayitey"
id="fullName"
name="fullName"
minlength="2"
required
/>
</div>
<div>
<label for="email">Email address</label>
<input
type="email" placeholder="example@gmail.com"
id="email"
name="email"
required
/>
</div>
<div>
<label for="Addres">Address</label>
<input
type="Address" placeholder="Home Address"
id="Address"
name="Address"
required
/>
</div>
<fieldset>
<legend>Choose a colour</legend>
<div>
<input type="radio" id="colourRed" name="colour" value="red" required />
<label for="colourRed">Red</label>
</div>
<div>
<input type="radio" id="colourGreen" name="colour" value="green" />
<label for="colourGreen">Green</label>
</div>
<div>
<input type="radio" id="colourBlue" name="colour" value="blue" />
<label for="colourBlue">Blue</label>
</div>
<div>
<input type="radio" id="colourYellow" name="colour" value="Yellow" />
<label for="colourYellow">Yellow</label>
</div>
<div>
<input type="radio" id="colourBlack" name="colour" value="Black" />
<label for="colourBlack">Black</label>
</div>
</fieldset>
<div>
<label for="size">Choose a size</label>
<select id="size" name="size" required>
<option value="#">Select size</option>
<option value="xs">XS</option>
<option value="s">S</option>
<option value="m">M</option>
<option value="l">L</option>
<option value="xl">XL</option>
<option value="xxl">XXL</option>
</select>
</div>
<button type="submit">Submit</button>
</main>
<footer>
<!-- change to your name-->
<h2>By J-Linx Front-End Developer(Joseph)</h2>
</footer>
</body>
</html>