-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
33 lines (32 loc) · 1.07 KB
/
services.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services</title>
</head>
<link rel="stylesheet" href="style.css">
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About us</a></li>
<li class="dropdown"><a href="services.html">Services</a>
<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>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</nav>
<!-- <img src="profile_image.jpg" alt="image"> -->
</header><div>
<img src="Images/services.png" alt="image">
</div>
<footer>Copyright @yashchavan since 2023</footer>
<script src="script.js"></script>
</body>
</html>