-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
68 lines (61 loc) · 3.03 KB
/
about.html
File metadata and controls
68 lines (61 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width; initial-scale=1.0" />
<title>About App</title>
<link rel="stylesheet" href="styles/jquery.mobile-1.4.5.min.css" />
<script src="scripts/jquery-2.1.3.min.js"></script>
<script src="scripts/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div data-role="page" id="about" data-theme="b">
<div data-role="header">
<h1>About App</h1>
<a href="./index.html" data-rel="back" data-role="button" data-direction="reverse" data-inline="true" data-icon="back">Back</a>
</div>
<div data-role="content" id="contentMain" name="contentMain">
<div data-role="collapsible-set" data-theme="b" data-content-theme="a">
<div data-role="collapsible" data-collapsed="false">
<h3>About App</h3>
<p><b>Know your Indian train berth/seat position of II-Tier AC, III-Tier AC, Garib Rath, Sleeper Class, Second Seating, Second Seating in JanShatabdi and for most of the Indian trains.</b></p>
<p>Its a complete <b><u>off-line</u></b> application, means you do not require, active Internet connection to use this application.</p>
<p>Simply download and install, that's what you need to do</p>
<p>Just enter your berth/seat number and check it's exact position.</p>
</div>
<div data-role="collapsible">
<h3>Author</h3>
<div data-role="collapsible-set" data-theme="a" data-content-theme="b">
<div data-role="collapsible" data-collapsed="false">
<h4>Name</h4>
<p>Suresh Raju Pilli</p>
</div>
<div data-role="collapsible">
<h4>Passion</h4>
<p>Interested in doing simple and useful applications, software related tips and tricks in day to day life.</p>
</div>
<div data-role="collapsible">
<h4>Activities</h4>
<p>Blogger, photographer and a small developer</p>
</div>
</div>
</div>
<div data-role="collapsible">
<h3>Contact Us</h3>
<p>Blog: <a href="http://psrdotcom.blogspot.com" target="_blank">http://psrdotcom.blogspot.com</a></p>
<p>Facebook: <a href="https://www.facebook.com/psrdotcom/" target="_blank">https://www.facebook.com/psrdotcom</a></p>
<p>e-mail: <a href="mailto:psrdotcom@gmail.com">psrdotcom@gmail.com</a></p>
</div>
<div data-role="collapsible">
<h3>Useful Links</h3>
<p>Train Ticket Booking: <a href="https://irctc.co.in/" target="_blank">https://irctc.co.in/</a></p>
<p>Train Enquiry/Running Status: <a href="http://enquiry.indianrail.gov.in/ntes/index.html" target="_blank">http://enquiry.indianrail.gov.in/ntes</a></p>
<p>PNR Status Enquiry: <a href="https://www.irctc.co.in/nget/pnr-enquiry" target="_blank">https://www.irctc.co.in/nget/pnr-enquiry</a></p>
<p>Indian Rail Info Website: <a href="http://www.indianrail.gov.in/" target="_blank">http://www.indianrail.gov.in/</a></p>
<p>Complete Railway Info Website: <a href="https://etrain.info/in" target="_blank">https://etrain.info/in</a></p>
</div>
</div><!-- Content Main -->
</div>
</div>
</body>
</html>