-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (46 loc) · 2.49 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Rail Query</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dosis:wght@200&display=swap" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<div class="form">
<div class="title">
<ul>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRNnSBN2rpTw7t5bpCzvqpQLU7qCE4Qs-qFvw&usqp=CAU">
<p class="titleText">Rail Query</p>
<span class="titleDesc">An Indian Railway Enquiry App</span>
<!-- Train number input field -->
<div class="input" id="rem">
<input type="text" placeholder="Enter the train number" class="inputNumber">
<input type="submit" value="Find" class="button1 orange" >
</div>
<!-- StationCode input field -->
<div class="input">
<input type="text" placeholder="Enter Station code" class="inputValue">
<input type="submit" value="Find" class="button green" >
</div>
<p class="line1"></p>
<span class="line2"></span>
<span class="line3"></span>
<span class="name"></span>
<!-- <button><a href="https://maps.google.com/maps?q=8.17428,77.4439">Go to maps</a></button> -->
<!-- <div class="mapouter"><div class="gmap_canvas"><iframe width="403" height="135" id="gmap_canvas" src="http://maps.google.com/maps?q=8.17428,77.4439&t=&z=13&ie=UTF8&iwloc=&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe><a href="https://elitetorrent-es.com">elitetorrent</a></div><style>.mapouter{position:relative;text-align:right;height:135px;width:403px;}.gmap_canvas {overflow:hidden;background:none!important;height:135px;width:403px;}</style></div> -->
</div>
</ul>
</div>
</div>
</div>
<script type='text/javascript' src='config.js'></script>
<script src="app.js"></script>
</body>
</html>