-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Navbar</title>
<link rel="stylesheet" href="navStyle.css">
</head>
<body>
<nav>
<ul>
<li>Home</li>
<li>About</li>
<li>Courses
<div class="dropdown">
<ul>
<li>BCA
<div class="courses">
<ul>
<li>Fundamentals of BCA</li>
<li>Fee Structure</li>
<li>Admission Procedure</li>
<li>Curriculum</li>
<li>Examination Details</li>
<li>Project</li>
<li>Placement</li>
</ul>
</div>
</li>
<li>Btech</li>
<li>Bsc</li>
<li>BA</li>
</ul>
</div>
</li>
<li>Contact Us</li>
</ul>
</nav>
<section>
<form onsubmit="return data()" action="home.html" >
Username: <br><input type="text" id="username" name="username"><br>
password:<br><input type="password" id="pwd" placeholder="5-digit"><br>
<input type="submit" value="Login" ></input>
</form>
</section>
<script src="form.js"></script>
</body>
</html>