-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.html
112 lines (96 loc) · 3.59 KB
/
feedback.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Anton' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="js/myscript.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<title>Traveloogle</title>
</head>
<body onload="startTime()" ng-app="">
<!-- HEADER SECTION -->
<div class="header">
<a href="index.html"><img src="img/logo1.png" width="130" height="50"></a>
<h1 style="text-align:center;font-family:Anton"> TRAVELLING IN REALITY TO FULFILL YOUR DREAM TOURS </h1>
<div>
<a href="index.html">Home</a>
<a href="contact.html">Contact Us</a>
<a href="feedback.html">Feedback</a>
</div>
</div>
<!-- STREAM SECTION -->
<div class="stream">
<h1 style="color:white; font-family:Lobster">Please take a short survey</h1>
<img src="img/ex.jpg" width="900" height="506" scrolling="no"></iframe>
</div>
<div class="portfolio">
<section class="container">
<div>
<div style="text-align:center">
<div><h2>RATE US</h2></div>
<p>Enter the details</p>
<div>
<form method="get" onsubmit="abc()">
<div id="form-inputs clearfix">
<p>
<label class="required">Your Feedback: <span>*</span></label><br>
<input type="text" id="feedback" name="feedback" required="true" style="color:black">
</p>
</div>
<div class="form-inputs clearfix">
<p>
<label class="required">Rating out of 5: <span>*</span></label><br>
<select name="category" id="category" required="true" style="color:black">
<option value="">Select rating</option>
<option value="e1">1</option>
<option value="e1">2</option>
<option value="e1">3</option>
<option value="e1">4</option>
<option value="e1">5</option>
</select>
</p>
</div>
<div style="padding-bottom: 10px;">
Would you like to write your experience ?
<input id="check1" type="checkbox" ng-model="yourExp" ng-init="yourExp = false">
</div>
<div ng-if="yourExp">
<p>
<label class="required">Your Experience: <span>*</span></label><br>
<textarea id="exp" name="exp" aria-required="true" cols="58" rows="8" style="color:black"></textarea>
<br><span>Type the description thoroughly and in detail .</span>
</p>
</div>
<input id="submit" name="submit" type="submit" value="Submit Feedback" style="color:black">
</form>
</div>
</div><!-- End page-content -->
</div><!-- End main -->
</section>
</div>
<!-- FOOTER SECTION -->
<div class="footer">
<div class="container">
<div class="row-footer">
<div>
<ul>
<li><a href="index.html"><h5>Home</h5></a></li>
<li><a href="contact.html"><h5>Contact Us</h5></a></li>
<li><a href="https://www.facebook.com/traveloogle12"><h5>Facebook</h5></a></li>
<li><a href="https://twitter.com/traveloogle12"><h5>Twitter</h5></a></li>
</ul>
</div>
<h4><div id="time"></div></h4>
<div>
<ul>
<li><h5>© ADITYA SANGHI</h5></li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>