-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathh.html
79 lines (74 loc) · 1.41 KB
/
h.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
<!DOCTYPE html>
<html>
<head>
<title>Railway Ticket</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
text-align: center;
}
h1 {
color: #006699;
font-size: 28px;
}
img {
max-width: 100%;
}
table {
margin: 0 auto;
border-collapse: collapse;
border: 1px solid #006699;
font-size: 18px;
background-color: #fff;
}
th, td {
padding: 10px;
text-align: left;
border-bottom: 1px solid #006699;
}
th {
background-color: #006699;
color: #fff;
}
</style>
</head>
<body>
<img src="railway_logo.png" alt="Railway Logo">
<h1>Railway Ticket</h1>
<table>
<tr>
<th>Train Number</th>
<td>12345</td>
</tr>
<tr>
<th>Train Name</th>
<td>Express</td>
</tr>
<tr>
<th>From</th>
<td>New York</td>
</tr>
<tr>
<th>To</th>
<td>Chicago</td>
</tr>
<tr>
<th>Date</th>
<td>March 10, 2023</td>
</tr>
<tr>
<th>Time</th>
<td>8:00 AM</td>
</tr>
<tr>
<th>Seat Number</th>
<td>12A</td>
</tr>
<tr>
<th>Price</th>
<td>$50</td>
</tr>
</table>
</body>
</html>