-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (111 loc) · 5.37 KB
/
Copy pathindex.html
File metadata and controls
123 lines (111 loc) · 5.37 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
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
115
116
117
118
119
120
121
122
123
<!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>SiGesit | Pelayanan Expedisi Tercepat di Indonesia</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link href="assets/css/style.css" rel="stylesheet" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-light fixed-top" id="mainNav">
<div class="container px-4">
<a class="navbar-brand" href="#">
<img src="assets/img/Navbar/Logo-SiGesit.png" class="image-logo" alt="Logo SiGesit">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSiGesit"
aria-controls="navbarSiGesit" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSiGesit">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#service">Service</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#tentangkami">Tentang Kami</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#cekongkir">Cek Ongkir</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#partner">Partner</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header-->
<header class="bg-header text-white">
<div class="container px-5 text-left">
<h1 class="fw-bolder lh-base title-header animate__bounce">CEPAT <br> MEMBUAT <br> SEMUA <br>LEBIH MUDAH
</h1>
<div class="d-flex">
<a href="#"><img src="assets/img/Header/AppStore.png" class="d-inline-block logo-header" /></a>
<a href="#"><img src="assets/img/Header/Playstore.png" class="d-inline-block logo-header mx-3" /> </a>
</div>
</div>
</header>
<!-- About section-->
<section id="about">
<div class="container px-4">
<div class="row gx-4 justify-content-center">
<div class="col-lg-8">
<h2>About this page</h2>
<p class="lead">This is a great place to talk about your webpage. This template is purposefully
unstyled so you can use it as a boilerplate or starting point for you own landing page designs!
This template features:</p>
<ul>
<li>Clickable nav links that smooth scroll to page sections</li>
<li>Responsive behavior when clicking nav links perfect for a one page website</li>
<li>Bootstrap's scrollspy feature which highlights which section of the page you're on in the
navbar</li>
<li>Minimal custom CSS so you are free to explore your own unique design options</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Services section-->
<section class="bg-light" id="services">
<div class="container px-4">
<div class="row gx-4 justify-content-center">
<div class="col-lg-8">
<h2>Services we offer</h2>
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut optio velit inventore,
expedita quo laboriosam possimus ea consequatur vitae, doloribus consequuntur ex. Nemo assumenda
laborum vel, labore ut velit dignissimos.</p>
</div>
</div>
</div>
</section>
<!-- Contact section-->
<section id="contact">
<div class="container px-4">
<div class="row gx-4 justify-content-center">
<div class="col-lg-8">
<h2>Contact us</h2>
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vero odio fugiat
voluptatem dolor, provident officiis, id iusto! Obcaecati incidunt, qui nihil beatae magnam et
repudiandae ipsa exercitationem, in, quo totam.</p>
</div>
</div>
</div>
</section>
<!-- Footer-->
<footer class="py-5 bg-dark">
<div class="container px-4">
<p class="m-0 text-center text-white">Copyright © Your Website 2021</p>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>