-
Notifications
You must be signed in to change notification settings - Fork 0
/
ticketsProject.html
51 lines (48 loc) · 1.33 KB
/
ticketsProject.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website</title>
<style>
body{
background-image: url(https://m.media-amazon.com/images/I/81aM6HS9b0L.jpg);
background-size: cover;
margin: 10px;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
background-color: #333;
}
nav ul li {
display: inline;
}
nav ul li a {
text-decoration: none;
color: white;
padding: 15px;
display: inline-block;
font-size: 18px;
}
nav ul li a:hover {
background-color: #555;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="project.html">Home</a></li>
<li><a href="https://www.irctc.co.in" target="_blank">Rail Tickets</a></li>
<li><a href="https://www.goibibo.com" target="_blank">Bus tickets</a></li>
<li><a href="https://www.makemytrip.com" target="_blank">Flight tickets</a></li>
</ul>
</nav>
</header>
<main>
</main>
</body>
</html>