-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
45 lines (44 loc) · 1.54 KB
/
contactus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
</head>
<link rel="stylesheet" href="style.css">
<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>
<div>
<img src="Images/contactus.png" alt="image">
</div>
<footer>Copyright @yashchavan since 2023</footer>
<script src="script.js"></script>
<script src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons.js"></script>
</body>
</html>