-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (62 loc) · 2.92 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="box">
<h1>Student Registration Form</h1>
<div class="container">
<div class="form">
<h2>Form</h2>
<form>
<div class="name">
<label for="name">Name :</label>
<input type="text" id="name" placeholder="ex.xyz" required>
</div>
<div class="email">
<label for="email">Email :</label>
<input type="email" id="email" placeholder="ex. [email protected]" required>
</div>
<div class="website">
<label for="website">Website :</label>
<input type="url" id="website" placeholder="ex. xyz.com" required>
</div>
<div class="image">
<label for="url">Image URL: <span>(jpg,png etc.format)</span></label>
<input type="url" id="url" placeholder="ex. https://xyz.jpg"
value="https://st.depositphotos.com/2101611/3923/v/450/depositphotos_39238767-stock-illustration-businessman-avatar-profile-picture.jpg"
required>
</div>
<div class="gender">
<label for="gender">Gender: </label>
<input type="radio" name="male-female" id="male" value="Male" checked required>Male
<input type="radio" name="male-female" id="female" value="Female">Female
</div>
<div class="skills">
<label for="skills">Skills :</label>
<input type="checkbox" value="C++" id="cpp" class="checkbox" checked>C++
<input type="checkbox" value="C" id="c" class="checkbox">C
<input type="checkbox" value="HTML" id="html" class="checkbox">HTML
<input type="checkbox" value="CSS" id="css" class="checkbox">CSS
</div>
<div class="button">
<button type="button" id="submit">Submit</button>
<button type="reset" id="reset">Reset</button>
</div>
</form>
</div>
<div class="output">
<h2>Student Details</h2>
<div class="cardContainer" id="cardContainer">
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>