-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (121 loc) · 3.27 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NashTech</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="loader" class="loader"></div>
<header>
<nav>
<h1 style="font-size: 50px">Web Development Basics</h1>
<p>
GitHub profile pictures are <strong>clickable</strong>, <em>and</em>,
<u>will</u> open <del>the</del> github profile in new <b>tab</b>
</p>
</nav>
</header>
<section class="container">
<form
id="form"
style="border: 1px solid rgb(238, 233, 233); padding: 50px"
>
<div>
<input
type="text"
id="userName"
name="userName"
value=""
placeholder="User Name"
required
/>
</div>
<br />
<br />
<div>
<!-- <label for="githubID">Github ID:</label> -->
<input
type="text"
id="githubID"
name="githubID"
value=""
placeholder="GitHub ID"
required
/>
</div>
<br />
<br />
<div class="form-item" style="padding: 4px">
<label for="gender"><b>Gender:</b></label>
<input type="radio" id="male" name="gender" value="Male" required />
<label for="male">Male</label>
<input
type="radio"
id="female"
name="gender"
value="Female"
required
/>
<label for="female">Female</label>
</div>
<br />
<div class="form-item" style="padding: 4px">
<label for="country"><b>Country:</b></label>
<select
id="country"
name="country"
style="
padding: 5px;
width: 16rem;
border-radius: 3px;
border: 1px solid #ccc;
background-color: white;
"
required
>
<option value="India">India</option>
<option value="Japan">Japan</option>
<option value="Cshina">China</option>
</select>
</div>
<br />
<br />
<div style="display: flex" class="form-item">
<textarea
style="
padding: 10px;
width: 20rem;
height: 50px;
border-radius: 3px;
border: 1px solid #ccc;
background-color: white;
"
id="additionalDetailsOfUser"
name="additionalDetailsOfUser"
placeholder="Any Other Info"
></textarea>
</div>
<br />
<div>
<input
type="checkbox"
id="checkbox"
name="checkbox"
value="checkbox"
required
/>
<label for="checkbox"
>I agree to share this data with Arjun Pandit</label
>
</div>
<br />
<div style="text-align: center">
<button onclick="submitForm()">Submit</button>
</div>
</form>
</section>
<script src="script.js"></script>
</body>
</html>