-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathticket.html
95 lines (84 loc) · 3.88 KB
/
ticket.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="discribtion" content="welecome">
<!-- start IE combability meta -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- start viewport mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My website booking now our flight</title>
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Amaranth:ital,wght@0,400;0,700;1,400;1,700&family=Karantina:wght@300;400;700&display=swap"
rel="stylesheet">
<!-- end google fonts -->
<!-- start for date dropper -->
<link href="css/datedropper.css" rel="stylesheet" />
<link href="css/my-style.css" rel="stylesheet" />
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/datedropper.js"></script>
<!-- end for date dropper -->
<!-- start normalization -->
<link rel="stylesheet" href="css/normalize.css">
<!-- start webfonts -->
<link rel="stylesheet" href="./css/all.min.css">
<!-- start bootstrap -->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<!-- start style css -->
<link rel="stylesheet" href="./css/proticket.css">
</head>
<body>
<div class="container-fluid d-flex justify-content-center flex-wrap ">
<!-- start ticket -->
<div class="ticket mb-2">
<div class="ticket-left">
<img class="path" src="images/curved-dotted-line-png.png">
<!-- start row -->
<div class="row">
<!-- start col -->
<div class="col-3 text-center">
<p class="p-0 m-0 text-muted">From</p>
<h2 class="p-0 m-0">Egypt</h2>
<p class="date p-0 m-0">january 08 2021</p>
<p class="dateH p-0 m-0"> 10:00pm</p>
<p class="py-1 m-0 text-muted">passenger No : <span class="text-danger">2</span></p>
</div>
<!-- end col -->
<!-- start col -->
<div class="col-3 d-flex justify-content-center align-items-center">
<img class="plane-icon" src="images/airplane.png">
</div>
<!-- end col -->
<!-- start col -->
<div class="col-3 text-center">
<p class="p-0 m-0 text-muted">To</p>
<h2 class="p-0 m-0">Saudi</h2>
<p class="date p-0 m-0">january 08 2021</p>
<p class="dateH p-0 m-0"> 10:00pm</p>
<p class="py-1 m-0 text-muted">Flight : <span class="text-danger">bussness</span></p>
</div>
<!-- end col -->
<!-- start col -->
<div class="col-3 ">
<img class="barcode" src="images/parcode.png">
</div>
<!-- end col -->
<!-- start col -->
<div class="col-12 py-2 ">
<a href="#" class="btn btn-outline-danger w-100">200$</a>
</div>
<!-- end col -->
</div>
<!-- end row -->
</div>
</div>
<!-- end ticket -->
</div>
<!-- start jqueery -->
<script src="js/jquery-3.5.1.slim.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/proj.js"></script>
</body>
</html>