-
Notifications
You must be signed in to change notification settings - Fork 1
/
advertisements.html
266 lines (265 loc) · 7.14 KB
/
advertisements.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<html lang="en">
<head>
<meta charset="UTF-8">
<title>travelrecce | Advertisements</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="travelrecce" content="travelrecce is an iOS app designed for the curation, and execution of the perfect day out.">
<link rel='icon' href='assets/images/favicon.png' type='image/x-icon'>
<style>
@font-face {
font-family: Roboto2;
src: url('https://github.com/travelrecce/travelrecce.github.io/blob/master/fonts/Roboto/Roboto-Regular.ttf?raw=true') format('truetype');
}
@media only screen and (min-width: 200px) and (max-width: 799px) {
.paddedBody {
padding-left: 15px;
padding-right: 15px;
padding-top: 10px;
padding-bottom: 10px;
}
.centerContainer {
width: 100%;
text-align: center;
}
.topNavBar {
background-color: #3A3A3A;
padding-left: 20px;
padding-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
height: 33.5px;
}
.scrollContainer {
width: 98%;
display: flex;
flex-wrap: nowrap;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.scrollItem {
flex: 0 0 auto;
height: 135%;
}
.captionContainer {
padding: 5px;
width: 95%;
height: 65px;
border-radius: 15px;
background-color: #212121;
text-align: center;
float: right;
}
h1 {
color: black;
font-weight: 400;
font-size: 35px;
margin-bottom: 10px;
margin-top: 5px;
padding: 0px;
font-family: Roboto2, Arial, sans-serif;
}
.contentContainer {
width: 100%;
}
.content {
width: 100%;
}
}
@media screen and (min-width: 800px) {
.paddedBody {
padding-left: 20px;
padding-top: 20px;
padding-bottom: 20px;
}
.centerContainer {
width: 100%;
}
.topNavBar {
background-color: #3A3A3A;
padding-left: 20px;
padding-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
height: 33.5px;
}
.scrollContainer {
width: 98%;
display: flex;
flex-wrap: nowrap;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.scrollItem {
flex: 0 0 auto;
height: 75%;
}
.captionContainer {
padding: 5px;
width: 95%;
height: 43px;
border-radius: 15px;
background-color: #212121;
text-align: center;
float: right;
}
h1 {
color: black;
font-weight: 400;
font-size: 45px;
margin-bottom: 0px;
margin-top: 0px;
padding: 0px;
font-family: Roboto2, Arial, sans-serif;
}
.contentContainer {
width: 100%;
display: table;
}
.content {
display: table-cell;
width: 45%;
}
}
body {
background-color: white;
padding: 0px;
margin: 0;
}
h2 {
color: black;
font-weight: 400;
font-size: 25px;
margin-top: 10px;
margin-bottom: 10px;
padding: 0px;
font-family: Roboto2, Arial, sans-serif;
}
h3 {
color: black;
font-weight: 200;
font-size: 20px;
margin-top: 10px;
margin-bottom: 10px;
margin-right: 15px;
padding: 0px;
font-family: Roboto2, Arial, sans-serif;
}
.h3Link {
color: blue;
font-weight: 200;
font-size: 20px;
margin-top: 10px;
margin-bottom: 10px;
margin-right: 15px;
padding: 0px;
font-family: Roboto2, Arial, sans-serif;
}
h5 {
color: grey;
font-weight: 200;
font-size: 17.5px;
margin-top: 0px;
padding: 0px;
font-family: Roboto2, Arial, sans-serif;
}
img {
border: 2px solid white;
width: 150px;
margin-bottom: 10px;
margin-right: 10px;
text-align: center;
}
img:hover {
border: 2px solid grey;
}
ol {
padding-left: 27.5px;
}
li {
color: black;
font-size: 17.5px;
font-family: Robot2, Arial, sans-serif;
}
.containerDivider {
width: 100px;
height: 2px;
border-radius: 5px;
background-color: grey;
}
.customRow {
display: table;
table-layout: fixed;
}
.customColumn {
padding-left: 10px;
display: table-cell;
}
.betaButton {
background-color: #2096F3;
color: black;
padding: 8px 10px;
border: none;
border-radius: 10px;
width: 310px;
height: 50px;
cursor: pointer;
font-size: 25px;
}
.guideButton {
background-color: #8EC96F;
color: black;
padding: 8px 10px;
border: none;
border-radius: 10px;
width: 310px;
height: 50px;
cursor: pointer;
font-size: 25px;
}
button:hover {
background-color: grey;
color: white;
}
</style>
</head>
<body>
<div class="centerContainer">
<div class="topNavBar">
<a href="https://squaredsoftware.co.uk/"><img src="https://raw.githubusercontent.com/travelrecce/travelrecce.github.io/master/assets/images/sq.png"></img></a>
<a href="https://travelrecce.com/"><img src="https://raw.githubusercontent.com/travelrecce/travelrecce.github.io/master/assets/images/tr.png"></img></a>
</div>
</div>
<div class="paddedBody">
<div class="centerContainer">
<h1>
Advertisements in travelrecce
</h1>
<h5>
last revised 6th July, 2021
</h5>
</div>
<a href="https://support.google.com/analytics/answer/2799357?hl=en#zippy=%2Cin-this-article"><div class="h3Link">support.google.com/analytics/...</div></a>
<h5>How IDFAs work.</h5>
<br>
<h3>
The travelrecce platform utilises adverts served by the Google AdMob service in order to generate revenue for the platform. The platform requires a revenue stream to compensate for the cost of our supporting web services.
</h3>
<h3>
Any product, service, or view expressed by any advertisement found in travelrecce is not representative of, or endorsed by Squared Software LTD.
</h3>
<h3>
If you haven't asked us not to track you, we'll be able to access your unique advertising IDFA (iOS) to serve adverts tailored to your online activity. Otherwise, adverts may not be personalised to you, but will still be served.
</h3>
<h3>
Your activity within travelrecce won't directly affect your targeting, but when you click on an advert within travelrecce, as served by Google, this may affect your advertising profile.
</h3>
<br>
<h3>
Detailed information about how IDFAs work can be found at the link above.
</h3>
<br>
</div>
</body>
</html>