-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcontact.html
67 lines (43 loc) · 2.06 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<title>Railway Ticket Booking</title>
<link rel="stylesheet" href="index.css"/>
</head>
<body>
<div class="main">
<h1 class="head">Railway Ticket reservation system</h1>
<div class="navigation">
<ul>
<li><a href="index.html" >HOME</a></li>
<li><a href="meal.html">MEALS</a></li>
<li><a href="holiday.html">H PACKAGES</a></li>
<li><a href="service.html">SERVICE</a></li>
<li><a href="contact.html"id="onlink">CONTACT US</a></li>
</ul><!-- abhinandan-->
</div>
<div class="head">
<h1><center><mark>Contact US</main></h1> </center>
<form>
First Name <input type="text" name="First_Name" > Last Name <input type="name" name="Last_Name"> <br> <pre></pre>
Email    <input type="Email"> <br> <pre></pre>
Contact No. <input type="text" name="Contact"> <br> <pre></pre>
Query    <input type="text" name="Query"> <br> <pre></pre>
<i>Gender:-</i><!-- abhinandan-->
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
<input type="radio" name="gender" value="other"> Other <br> <pre></pre>
</form>
<pre></pre>              
<button class="open-button" onclick="openForm()">Submit</button>
<div class="form-popup" id="myForm">
<div class="popup">
<h1>Thanks for Contacting US</h1> <br>
<h2>We will Contact You Shortly</h2>
<button type="button" class="hide" onclick="closeForm()">Close</button>
</div> </div>
<h1 style="font-family: calibiri">Email Us - helpdesk@erail.gov.in</h1>
</div><!-- abhinandan-->
<script src="main.js"></script>
</body>
</html>