-
Notifications
You must be signed in to change notification settings - Fork 2
/
trips.html
48 lines (41 loc) · 1.45 KB
/
trips.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
<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>Document</title>
<link rel="stylesheet" href="./styles/trips.css">
<link rel="icon" href="https://www.orbitz.com//favicon.ico">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/barcode.css">
<link rel="stylesheet" href="./styles/footer.css">
<script src="https://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="navbar">
<!-- add navbar here -->
</div>
<div id="trips_container">
<h1>Trips</h1>
<div class="nav">
<div id="image">
<img src="https://a.travel-assets.com/egds/illustrations/uds-default/unlock__large.svg" alt="">
</div>
<div id="cont">
<a href="login.html">Sign in or create free account</a>
</div>
<div id="item">
<a href="register.html">Don't have account?</a>
<p>Use your itenerary number and email to find a booking ></p>
</div>
</div>
</div>
<div id="barcode">
<!-- append the barcode section here -->
</div>
<footer>
<!-- add footer here -->
</footer>
</body>
</html>
<script type="module" src="trips.js"></script>