-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
104 lines (92 loc) · 3.46 KB
/
Copy pathservices.html
File metadata and controls
104 lines (92 loc) · 3.46 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<title>services</title>
<link rel="stylesheet" href="frontpage.css">
</head>
<body background="1200px-Shaqi_jrvej.jpg">
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="about.html">About</a>
<a href="services.html">Services</a>
<a href="faq.html">FAQ</a>
<a href="contact.html">Contact</a>
<a href="form formation.html">Sign Up</a>
</div>
<span style="font-size:30px;cursor:pointer;background-color:black;color:dodgerblue" onclick="openNav()">☰</span>
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
</script>
<a href="front page.html"><button class="btn"><i class="fa fa-home"></i> Home</button></a>
<div class="dropdown">
<button class="dropbtn">Medical</button>
<div class="dropdown-content">
<a href="biology.html">BIOLOGY</a>
<a href="physics.html">PHYSICS</a>
<a href="chemistry.html">CHEMISTRY</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Non-Medical</button>
<div class="dropdown-content">
<a href="mathematics.html">Mathematics</a>
<a href="physics.html">PHYSICS</a>
<a href="chemistry.html">CHEMISTRY</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Competition</button>
<div class="dropdown-content">
<a href="undergraduate.html">Undergraduate</a>
<a href="graduate.html">Graduate</a>
<a href="jobs.html">Jobs</a>
</div>
</div>
<button onclick="document.getElementById('id01').style.display='block'"class="btn"">Login</button>
<div id="id01" class="modal">
<form class="modal-content animate" action="front page.html">
<div class="imgcontainer">
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">×</span>
<img src="istockphoto-506316644-612x612.jpg" alt="Avatar" class="avatar">
</div>
<div class="container">
<label for="uname"><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="uname" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<button type="submit">Login</button>
<label>
<input type="checkbox" checked="checked" name="remember"> Remember me
</label>
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">Cancel</button>
<span class="psw">Forgot <a href="#">password?</a></span>
</div>
</form>
</div>
<script>
// Get the modal
var modal = document.getElementById('id01');
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
<h1 style="text-align:center;background-color:black;color:blue"><b><i>services</i></b></h1>
<p><b><i>
<ul style="text-align:center;color:black;background-color:yellow">
<li>INFO about different types of websites.</li><br><hr>
<li>Study material of different colleges entrance exams</li><br><hr>
<li>INFO about different national and inter-national level exams</li><br><hr>
</ul>
</b></i></p>
</body>
</html>