-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.html
54 lines (54 loc) · 2.23 KB
/
service.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="service.css">
<title>SERVICE</title>
<!--==Stylesheet=============================-->
<link rel="stylesheet" type="text/css" href="style.css"/>
<!--==Fav-icon===============================-->
<link rel="shortcut icon" href="images/fav-icon.png"/>
<!--==Using-Font-Awesome=====================-->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<!--==Import-Font-Family======================-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
</head>
<body>
<!--==Navigation================================-->
<nav class="navigation">
<!--logo-------->
<a href="index.html" class="logo">
<span>BREAK</span>THE BROKERS
</a>
<!--menu-btn---->
<input type="checkbox" class="menu-btn" id="menu-btn">
<label for="menu-btn" class="menu-icon">
<span class="nav-icon"></span>
</label>
<!--menu-------->
<ul class="menu">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="#category">Categories</a></li>
<li><a href="#popular-bundle-pack">Our Packages</a></li>
<!-- <li><a href="#download-app">Our App</a></li> -->
</ul>
<!--right-nav-(cart-like)-->
<div class="right-nav">
<!--like----->
<a href="#" class="like">
<i class="far fa-heart"></i>
<span>0</span>
</a>
<!--cart----->
<a href="#" class="cart">
<i class="fas fa-shopping-cart"></i>
<span>0</span>
</a>
</div>
</nav>
<!--nav-end--------------------->
</body>
</html>