-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (48 loc) · 1.65 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
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<!--
Student Name: Frankie Zheng
Student ID: 15895990
index.html page
-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./main.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<title>Easy Cab better life</title>
</head>
<body>
<!-- header section -->
<div class="header">
<a class="head" href="booking.html">
<h2 class="logo">Easy Cab Booking System</h2>
</a>
<input type="checkbox" id="chk">
<label for="chk" class="show-menu-btn">
<i class="fas fa-chevron-circle-down"></i>
</label>
<ul class="menu">
<a href="index.html">Home</a>
<a href="booking.html">Booking</a>
<a href="admin.html">Admin</a>
<label for="chk" class="hide-menu-btn">
<i class="far fa-times-circle"></i>
</label>
</ul>
</div>
<div class="back-img"></div>
<div class="main-section">
<div class="intro-section">
<h1>Web Assignment 2</h1>
<h2>Easy Cab System</h2>
<div class="link-section">
<a href="booking.html" class="btn btn1">Booking</a>
<a href="admin.html" class="btn btn2">Admin</a>
</div>
</div>
</div>
</body>
</html>