-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (55 loc) · 1.97 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
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Set character encoding and viewport for responsiveness -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Navbar</title>
<!-- Link to external stylesheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section -->
<header class="header">
<!-- Navigation Bar -->
<nav class="navbar">
<ul>
<!-- Home Link -->
<li><a href="index.html">Home</a></li>
<!-- About Us Link -->
<li><a href="aboutus.html">About us</a></li>
<!-- Services Link with Dropdown -->
<li><a href="services.html">Services</a>
<!-- Dropdown Menu -->
<ul class="dropdown-menu">
<li><a href="#">Web Development</a></li>
<li><a href="#">Data Structures</a></li>
<li><a href="#">OOPM in Java</a></li>
</ul>
</li>
<!-- Contact Us Link -->
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</nav>
<div class="mobile">
<ion-icon name="menu" class="navicon"></ion-icon>
<ion-icon name="close" class="navicon"></ion-icon>
</div>
</header>
<!-- Main Content Section -->
<div>
<!-- Image with Animation -->
<img src="Images/home.png" alt="image" class="animation">
</div>
<!-- Footer Section -->
<footer>
<!-- Copyright Information -->
Copyright @yashchavan since 2023
</footer>
<!-- JavaScript Scripts -->
<script src="script.js"></script>
<!-- Additional Script Tag (if needed) -->
<!-- <script src="additional_script.js"></script> -->
<script src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons.js"></script>
</body>
</html>