-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (73 loc) · 3.11 KB
/
index.html
File metadata and controls
73 lines (73 loc) · 3.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/png" href="images/subway.png">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ExpressRail | Home</title>
<link rel="stylesheet" href="css/home.css">
<script src="javascript/reload.js" defer></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css">
<script src="javascript/homeSearch.js" defer></script>
<script src="javascript/checkLogin.js" defer></script>
</head>
<body>
<header>
<nav class="navbar">
<h2 class="logo"><a href="index.html">ExpressRail.</a></h2>
<input type="checkbox" id="menu-toggler">
<label for="menu-toggler" id="hamburger-btn">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" width="24px" height="24px">
<path d="M0 0h24v24H0z" fill="none"/>
<path d="M3 18h18v-2H3v2zm0-5h18V11H3v2zm0-7v2h18V6H3z"/>
</svg>
</label>
<ul class="all-links">
<li class="logged-in"><a href="useraccount.html">Profile</a></li>
<li><a href="BookTickets.html">Book Tickets</a></li>
<li><a href="trainSchedule.html">Train Timings</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="#contact">Contact Us</a></li>
<li class="logged-in log-out"><a href="#">Log Out</a></li>
<li class="not-logged-in"><a href="login.html">Sign In</a></li>
<li class="join-btn not-logged-in"><a href="registration.html">Sign Up</a></li>
</ul>
</nav>
</header>
<section class="homepage" id="home">
<div class="content">
<div class="text">
<h1>Find the train you're <br> looking for, right away</h1>
<form action="#" class="search-form">
<input type="text" placeholder="Enter departure station" id="from" required>
<input type="text" placeholder="Enter destination" id="to" required>
</form>
</div>
<a href="#" id="search-btn">SEARCH</a>
</div>
</section>
<section class="contact" id="contact">
<h2>Contact Us</h2>
<p>Reach out to us for any inquiries or feedback.</p>
<h3><a href="feedback.html"> Rate Us!</a></h3>
<div class="row">
<div class="col information">
<div class="contact-details">
<p><i class="fas fa-phone"></i> (+91) 12345 67890</p>
<p><i class="fas fa-clock"></i> Monday - Friday: 9:00 AM - 5:00 PM</p>
<p><i class="fas fa-clock"></i> Saturday: 10:00 AM - 3:00 PM</p>
<p><i class="fas fa-clock"></i> Sunday: Closed</p>
</div>
</div>
<div class="col form">
<form>
<input type="text" placeholder="Name*" required>
<input type="email" placeholder="Email*" required>
<textarea placeholder="Message*" required></textarea>
<button id="submit" type="submit">Send Message</button>
</form>
</div>
</div>
</section>
</body>
</html>