forked from Linux-User-Group/hacktoberfest2021-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtransaksi.html
More file actions
57 lines (51 loc) · 1.83 KB
/
transaksi.html
File metadata and controls
57 lines (51 loc) · 1.83 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
<!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>-LUG Hacktoberfest 2021 | Transaksi-</title>
<!-- style -->
<link rel="stylesheet" href="./assets/css/style.css" />
{% comment %} cdn Bootstrap Css {% endcomment %}
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html" id="home" class="active">Home</a></li>
<li><a href="fitur-hotel/index.html" id="hotel">Hotel</a></li>
<li><a href="transaksi.html" id="hotel">Transaksi</a></li>
</ul>
</nav>
</header>
<h1 align="center">Happy coding for Hacktoberfest 2021</h1>
<h2 align="center">Transaksi</h2>
<div class="wrap-content">
<h1 class="tagline">Happy coding for Hacktoberfest 2021</h1>
</div>
<h1 align="center">
<b
><i> <small>©</small> By Linux Users Group</i></b
>
</h1>
<script src="./assets/js/script.js"></script>
{% comment %} cdn Bootstrap script {% endcomment %}
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
crossorigin="anonymous"
></script>
</body>
</html>