-
Notifications
You must be signed in to change notification settings - Fork 0
/
Admission.html
74 lines (72 loc) · 3.39 KB
/
Admission.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- the below syntax is used for fontawsome icon -->
<link href="assets/fontawesome-free-6.5.1-web/css/fontawesome.css" rel="stylesheet">
<link href="assets/fontawesome-free-6.5.1-web/css/brands.css" rel="stylesheet">
<link href="assets/fontawesome-free-6.5.1-web/css/solid.css" rel="stylesheet">
<title>Task-4</title>
<link rel="apple-touch-icon" sizes="180x180" href="images/Task-4 images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/Task-4 images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/Task-4 images/favicon-16x16.png">
<link rel="manifest" href="images/Task-4 images/site.webmanifest">
<link rel="mask-icon" href="images/Task-4 images/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="Task-4.CSS">
</head>
<body>
<div class="navbar">
<div class="logo-container">
<img src="images/Task-4 images/Figma.svg" alt="logo">
<h3>One school</h3>
</div>
<div class="profile-container">
<img src="images/free-images.jpg" alt="profile image">
</div>
</div>
<div class="content">
<div class="heading">
<h2><U>Student Regestration</U></h2>
</div>
<div class="form-container">
<div class="row-container">
<div class="input-container">
<label for="first_name">First name <span class="red-text">*</span> :</label>
<form>
<input type="text" name="first_name" id="first_name" placeholder="enter your full name"></div>
<div class="input-container">
<label for="last_name">First name <span class="red-text">*</span> :</label>
<form>
<input type="text" name="last_name" id="last_name" placeholder="enter your last name "></form>
</div>
</div>
<div class="row-container">
<div class="input-container">
<label for="Mobile">Mobile<span class="red-text">*</span> :</label>
<form>
<input type="tel" name="Mobile" id="Mobile" placeholder="enter your mobile number"> </form>
</div>
</div>
<div class="input-container">
<label for="Email">Email<span class="red-text">*</span> :</label>
<form>
<input type="email" name="Email" id="Email" placeholder="enter your Email Address">
</div>
<div class="row-container">
<div class="input-container">
<label class="tt">Branch :</label>
<select>
<option>Select branch you like</option>
<options value="Computer Science">Computer Science</options>
<options value="Electronics">Electronics</options>
<options value="Mechanical">Mechanical</options>
</select>
</div>
</div>
</form>
</div>
</body>
</html>