-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
66 lines (66 loc) · 2.77 KB
/
Copy pathabout.html
File metadata and controls
66 lines (66 loc) · 2.77 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog | Boknoy Delivery Services</title>
<link rel="stylesheet" href="./public/css/about.css">
<link rel="shortcut icon" href="./media/fav.png" type="image/x-icon">
<script src="https://kit.fontawesome.com/36a7a715d0.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav>
<div class="nav">
<input type="checkbox" id="hamburger" name="hamburger">
<label for="hamburger" class="hamburger"></label>
<a class="logo" href="./index.html"><img src="media/logo.png"></a>
<a href="./signin.html" class="profile"><i class="fa-regular fa-user fa-lg"></i></a>
<ul class="nav-list">
<li class="nav-links"><a class="nav-anchor" href="./about.html">About</a></li>
<li class="nav-links"><a class="nav-anchor" href="#!">Contact Us</a></li>
<li class="nav-links"><a class="nav-anchor" href="#!">Download App</a></li>
</ul>
</div>
<div class="nav-member">
<input type="checkbox" name="checkbox" id="check_id" checked>
<label for="check_id" class="checkbox">Be Our Partner <i class="fa-solid fa-chevron-down symbol"></i></label>
<a class="login" href="./signin.html">Log In</a>
<a class="nav-sign" href="./signup.html">Sign Up</a>
<div class="partner">
<a>Boknoy Rider</a>
<a>Food/Mart Merchant</a>
</div>
</div>
</nav>
</header>
<section>
<div class="container" >
<h1>Watch our video!</h1>
<video controls>
<source src="./media/video.mp4" type="video/mp4">
</video>
<div class="description">
<h2>Boknoy Delivery Services<br><br></h2>
<h3>Services Offered:<br><br></h3>
<div class="services">
<div>
<h4>-Food Delivery (Any Fastfood Chain)<br>
-Bills Payment<br>
-Grocery Delivery<br>
-Medicine Delivery<br></h4>
</div>
<div>
<h4>
-Pa Buy to Market Delivery<br>
-Gifts & Surprise Delivery<br>
-Instant Courier<br>
-Other Errand</h4>
</div>
</div>
</div>
</div>
</section>
</body>
</html>