-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
46 lines (41 loc) · 1.35 KB
/
home.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
<!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> <a href="home.html"></a>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>
<h1>welcome</h1>
</body>
</html>