-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices_Androiddev.html
114 lines (113 loc) · 4.03 KB
/
services_Androiddev.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<title>Reboot Main</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="services_Webdev_design.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
</head>
<body>
<div style="background-image: url(bg3.png);">
</div>
<header>
<div class="navbar">
<div class="logo">
<img src="logo.png" alt="Logo">
</div>
<div class="dropdown">
<div class="dropdown" onclick="openHome()">
<button class="dropbtn">Home</button>
</div>
</div>
<div class="dropdown" onclick="openAboutUs()">
<button class="dropbtn">About Us</button>
</div>
<div class="dropdown">
<button class="dropbtn">Services</button>
<div class="dropdown-content">
<a href="services_Webdev_design.html">Web Development and Designing</a>
<a href="services_ComputerLaptop.html">Computer and Laptop Services</a>
<a href="services_Androiddev.html">Application Development</a>
<hr>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Projects</button>
<div class="dropdown-content">
<a href="#">Sub 1</a>
<a href="#">Sub 2</a>
<a href="#">Sub 3</a>
<hr>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Vision</button>
</div>
<div class="dropdown" onclick="openContactUs()">
<button class="dropbtn">Contact Us</button>
</div>
<div class="dropdown">
</div>
</div>
</header>
<section class="main-home">
<div class ="main-text">
</div>
</section>
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>Company</h4>
<ul>
<li><a href="#">About us</a></li>
<li><a href="#">Our services</a></li>
<li><a href="#">Privacy policy</a></li>
<li><a href="#"></a></li>
</ul>
</div>
<div class="footer-col">
<h4>Get Help</h4>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">shipping</a></li>
<li><a href="#">returns</a></li>
<li><a href="#">order status</a></li>
<li><a href="#">payment options</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Online Shop</h4>
<ul>
<li><a href="#">watch</a></li>
<li><a href="#">bag</a></li>
<li><a href="#">shoes</a></li>
<li><a href="#">dress</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Follow us</h4>
<div class="social-links">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
</footer>
<script>
function openAboutUs() {
window.location.href = "aboutus.html";
}
function openContactUs(){
window.location.href = "contactus.html";
}
function openHome(){
window.location.href = "reboot.html";
}
</script>
</body>
</html>