-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiock.html
102 lines (102 loc) · 1.95 KB
/
tiock.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
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<title>Railway Ticket</title>
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #F9F9F9;
margin: 0;
padding: 0;
}
.ticket {
position: relative;
width: 500px;
background-color: white;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
margin: 50px auto;
padding: 30px;
text-align: center;
}
h1 {
color: #2B2B2B;
font-size: 36px;
margin: 0 0 20px 0;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 600;
}
h2 {
color: #555;
font-size: 26px;
margin: 0;
font-weight: 400;
text-align: left;
display: inline-block;
width: 45%;
vertical-align: top;
}
.right {
text-align: right;
}
p {
color: #444;
font-size: 18px;
margin: 10px 0;
line-height: 1.6;
}
.logo {
width: 120px;
margin-bottom: 30px;
}
.qr-code {
width: 100px;
margin-top: 20px;
}
.btn {
display: inline-block;
background-color: #017BFD;
color: white;
font-size: 20px;
font-weight: 600;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
transition: background-color 0.2s ease-in-out;
}
.btn:hover {
background-color: #003E7D;
}
.watermark {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(train.jpg);
background-size: contain;
background-repeat: repeat;
opacity: 0.2;
z-index: -1;
}
</style>
</head>
<body>
<div class="ticket">
<div class="watermark"></div>
<img class="logo" src="logo.png" alt="Railway Logo">
<h1>Railway Ticket</h1>
<h2>From: London</h2>
<h2 class="right">To: Manchester</h2>
<p>Date: 10/03/2023</p>
<p>Departure time: 12:00 PM</p>
<p >Arrival time: 2:00 PM</p>
<p >Passenger name: John Smith</p>
<p>Seat number: 23C</p>
<img class="qr-code" src="qr-code.png" alt="QR Code">
<a href="#" class="btn">Print Ticket</a>
</div>
</body>
</html>