forked from Midway91/HactoberFest2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (61 loc) · 3.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./style.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2&family=Ubuntu&display=swap');
</style>
<title> Student-Form</title>
</head>
<body>
<div class="header">
<h1>Student Enrollment Form</h1>
</div>
<div class="parts">
<div class="part1">
<form class="Enrollement">
<label for="Name">Student Name :</label>
<input type="text" id="Name" placeholder="Student Name" name="Name">
<label for="Email" >Email :</label>
<input type="email" id="Email" placeholder="Email-Id" name="Email" >
<label for="website">Website :</label>
<input type="text" id="website" placeholder="www" name="website">
<label for="Image"> Image :</label>
<input type="file" id="Image" name="Image" class=" custom-file-input" onchange="image(event)">
<label for="Gender" class="gender"><p>
Gender :
</p>
<input type="radio" name="Gender" id="Male"value="Male">
<label for="Male">Male</label>
<input type="radio" name="Gender" id="Female" value="Female">
<label for="Female">Female</label>
</label>
<label for="Skills" class="skills"><p>
Skills :
</p>
<input type="checkbox" id="html" value="HTML">
<label for="html">HTML</label>
<input type="checkbox" id="css" value="CSS">
<label for="css">CSS</label>
<input type="checkbox" id="Javascript" value="Javascript">
<label for="js">Javascript</label>
</label>
<div class="btn">
<button type="button" id="btn" class="button">Enroll Student</button>
<button type="submit" class="button">Clear</button>
</div>
</form>
</div>
<div class="vl"></div>
<div class="part2">
<h1 class="Enrolled">Enrolled Students</h1>
<div class="cards"></div>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>