-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunstatus.html
40 lines (39 loc) · 1.99 KB
/
runstatus.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
<html>
<head>
<title>Train status</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="runstyle.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="row">
<div class="card" style="width: 18rem;">
<img src="http://www.statushub.in/wp-content/uploads/2015/07/check-train-running-status.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Check running status</h5>
<label for="trainno"><b>Enter train no/name</b></label><br>
<input type="text"placeholder="Enter train no/name"name="trainno" required><br>
<label for ="sname"><b>From City</b></label><br>
<input type="text"placeholder="Enter source"name="sname" required><br>
<label for="dname"><b>To City</b></label><br>
<input type="text"placeholder="Enter destination"name="dname"required><br><br>
<a href="#" class="btn btn-primary">Get status</a>
</div>
</div>
<!-- timetable card -->
<div class="card2" style="width: 18rem;">
<img src="https://omaharentalads.com/images/station-clipart-train-schedule-9.png" height=200 class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Train time table</h5>
<label for="trainno"><b>Enter train no/name</b></label><br>
<input type="text"placeholder="Enter train no/name"name="trainno" required><br>
<label for ="sname"><b>From City</b></label><br>
<input type="text"placeholder="Enter source"name="sname" required><br>
<label for="dname"><b>To City</b></label><br>
<input type="text"placeholder="Enter destination"name="dname"required><br><br>
<a href="#" class="btn btn-primary">Get schedule</a>
</div>
</div>
</div>
</body>
</html>