-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1.79 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat:wght@100;200;400;500&family=Oswald&family=Space+Mono&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Online Bus Ticket Booking with RedBus</title>
</head>
<body>
<header>
<div class="main_header">
<div class="rb_header">
<div class="rb_logo"><img src="https://st.redbus.in/Images/rdc/rdc-redbus-logo.svg" alt=""></div>
<div class="innerbox"><img class="svgbus" src="https://st.redbus.in/web/images/layout/rb_vertical.svg"
alt="">
<span>Bus Tickets</span>
</div>
<div class="car_rental"><img src="https://st.redbus.in/web/images/layout/ryde_vertical.svg" alt="">
<span>Car Rental</span>
</div>
<div class="train_tickets"><img src="https://st.redbus.in/web/images/layout/rail_vertical.svg" alt="">
<h5>Train Tickets</h5>
</div>
<div class="help"><i class="fa-solid fa-headphones-simple"><span>Help</span></i></div>
</div>
</div>
</header>
</body>
</html>