-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
107 lines (106 loc) · 3.53 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/main.css" />
<script src="js/main.js" async type="text/javascript"></script>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-WNWXWVV");
</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-WNWXWVV"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="main-container">
<div class="hover_bkgr_fricc">
<span class="helper"></span>
<div>
<img
src="static/DFDS_logo_2015.svg.png"
alt="dfds logo"
class="dfds-logo"
/>
<p class="popupText">THANK YOU FOR YOUR FEEDBACK</p>
</div>
</div>
<div class="vertical-center">
<div class="container d-flex justify-content-center">
<div class="card mt-5 pb-5">
<div
style="margin-bottom: 60px"
class="d-flex flex-row justify-content-between p-3 adiv text-white"
>
<span class="pb-3 header">DID YOU LIKE THE MAIN COURSE?</span>
<i class="fas fa-times"></i>
</div>
<div class="mt-2 p-4 text-center">
<!-- <h6 class="mb-0">Your feedback help us to improve.</h6>
<small class="px-3">Please let us know about your chat experience.</small> -->
<div
style="text-align: center"
class="d-flex flex-row justify-content-center mt-2"
>
<img
class="ratingIcon"
onclick="trackRatingClick(1, this)"
data-grade="1"
src="static/1.png"
/>
<img
class="ratingIcon"
onclick="trackRatingClick(2, this)"
data-grade="2"
src="static/2.png"
/>
<img
class="ratingIcon"
onclick="trackRatingClick(3, this)"
data-grade="3"
src="static/3.png"
/>
<img
class="ratingIcon"
onclick="trackRatingClick(4, this)"
data-grade="4"
src="static/4.png"
/>
<img
class="ratingIcon"
onclick="trackRatingClick(5, this)"
data-grade="5"
src="static/5.png"
/>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>