-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (83 loc) · 2.76 KB
/
Copy pathindex.html
File metadata and controls
86 lines (83 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Info</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="page">
<div class="card">
<header class="header">
<h1>Personal Info</h1>
<p>Update your personal details here</p>
</header>
<form id="personalForm" novalidate>
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" placeholder="Your name" />
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" placeholder="Your email address" />
</div>
<div class="form-row">
<div class="form-group">
<label for="age">Age</label>
<input type="number" id="age" placeholder="Your age" />
</div>
<div class="form-group">
<label for="phone">Phone no.</label>
<input type="tel" id="phone" placeholder="Your phone no." />
</div>
</div>
<div class="form-group">
<label for="country">Country</label>
<select id="country">
<option value="">Your country</option>
<option>India</option>
<option>USA</option>
<option>UK</option>
</select>
</div>
<div class="form-group">
<label>Gender</label>
<div class="radio-group">
<label class="radio-card">
<input type="radio" name="gender" value="male" />
<span>Male</span>
</label>
<label class="radio-card">
<input type="radio" name="gender" value="female" />
<span>Female</span>
</label>
<label class="radio-card">
<input type="radio" name="gender" value="other" />
<span>Other</span>
</label>
</div>
</div>
<div class="form-group">
<label for="tech">Tech Stack</label>
<select id="tech">
<option value="">Your tech stack</option>
<option>Frontend</option>
<option>Backend</option>
<option>Full Stack</option>
</select>
</div>
<div class="form-group">
<label for="address">Address</label>
<textarea id="address" rows="4" placeholder="Your address"></textarea>
</div>
<div class="form-actions">
<button type="reset" class="btn secondary">Reset</button>
<button type="submit" class="btn primary">Submit</button>
</div>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>