-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (58 loc) · 3.08 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
<!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>
<h1>STUDENT COURSE REGISTRATION FORM</h1>
<hr>
<div class="box">
<div class="container">
<form action="" id="form">
<div class="f1">
<label for="name">Name:</label>
<input type="text" name="name" class="in" placeholder="Enter name" required>
</div>
<div class="f1">
<label for="id">ID:</label>
<input type="text" name="id" class="in" placeholder="Enter id" required>
</div>
<div class="f1">
<label for="course">Course:</label>
<input type="text" name="course" class="in" placeholder="Enter course" required>
</div>
<div class="f1">
<label for="email">Email:</label>
<input type="email" name="email" class="in" placeholder="Enter email id" required>
</div>
<div class="f1">
<label for="image">Image:</label>
<input type="file" name="image" class="in" id="img" alt="student image" accept="image/*" onchange="loadFile(event)">
</div>
<div class="f2">
<label for="skills">Skills:</label>
<div class="c">
<div class="c1"><input type="checkbox" name="skills">
<label for="">HTML</label></div>
<div class="c1"><input type="checkbox" name="skills">
<label for="">CSS</label></div>
<div class="c1"><input type="checkbox" name="skills">
<label for="">JS</label></div>
<div class="c1"><input type="checkbox" name="skills">
<label for="">React</label></div>
</div>
</div>
<input class="submit" type="submit" value="submit">
</form>
</div>
<div class="display">
<h2>FORM DATA</h2>
</div>
</div>
<script src="script.js"></script>
</body>
</html>