-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
509 lines (483 loc) · 26.4 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
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/>
<script>
// Detect whether the page is being loaded on a desktop or mobile
function isDesktop() {
return /Windows|Macintosh|Linux/.test(navigator.userAgent);
}
// Construct the manifest based on device type
let iconUrl = isDesktop() ? '/static/fonts/fontawesome-webfont.svg' : '/static/fonts/fontawesome-webfont.svg';
// Generate the manifest content dynamically
let manifest = {
name: "App name",
short_name: "App",
description: "Description of the app",
start_url: "/",
display: "standalone",
background_color: "#3367D6",
theme_color: "#3367D6",
icons: [{
src: iconUrl,
sizes: "512x512",
type: "image/png"
}]
};
// Create a data URL for the manifest
let content = encodeURIComponent(JSON.stringify(manifest));
let url = "data:application/manifest+json," + content;
// Create and append the manifest link to the document head
let element = document.createElement('link');
element.setAttribute('rel', 'manifest');
element.setAttribute('href', url);
document.querySelector('head').appendChild(element);
nonce = "{{nonce}}"
</script>
<!-- Google Tag Manager -->
<script src="static/js/gtag.js"></script>
<script src="static/js/head_tagscript.js"></script>
<!-- End Google Tag Manager -->
<meta charset="utf-8">
<title>Ivan Marinov Resume</title>
<link rel="icon" type="image/x-icon" href="/static/images/favicon.ico">
<meta name="keywords"
content="software engineer, Python, Django, web development, resume, portfolio, cv, online, online resume, online portfolio, online cv, html, css, playwright, testing, testing automation, jenkins, selenium, web development, git, github, python, django">
<meta name="description"
content="Software engineer, 2 years experience, Python , Django, developing, WEB, applications. Expertise, hands-on experience, Python, Django, HTML, CSS, JavaScript, Playwright, Selenium, Git, GitHub.">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="static/css/animate.min.css">
<link rel="stylesheet" href="static/css/bootstrap.min.css">
<link rel="stylesheet" href="static/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="static/css/templatemo-style.css">
<!-- <link rel="stylesheet" href="static/css/octo.css">-->
<script src="static/js/jquery.js"></script>
<script src="static/js/bootstrap.min.js"></script>
<script src="static/js/jquery.singlePageNav.min.js"></script>
<script src="static/js/typed.js"></script>
<script src="static/js/wow.min.js"></script>
<script src="static/js/custom.js"></script>
</head>
<body id="top">
<script src="static/js/body_tagscript.js"></script>
<!-- start preloader -->
<div class="preloader">
<div class="sk-spinner sk-spinner-wave">
<div class="sk-rect1"></div>
<div class="sk-rect2"></div>
<div class="sk-rect3"></div>
<div class="sk-rect4"></div>
<div class="sk-rect5"></div>
</div>
</div>
<!--<div class="preloader">-->
<!-- <div class="sk-spinner sk-spinner-wave">-->
<!-- <span class="wave">I</span>-->
<!-- <span class="wave">v</span>-->
<!-- <span class="wave">a</span>-->
<!-- <span class="wave">n</span>-->
<!-- <span class="wave"></span>-->
<!-- <span class="wave">M</span>-->
<!-- <span class="wave">a</span>-->
<!-- <span class="wave">r</span>-->
<!-- <span class="wave">i</span>-->
<!-- <span class="wave">n</span>-->
<!-- <span class="wave">o</span>-->
<!-- <span class="wave">v</span>-->
<!-- </div>-->
<!-- <img src="static/images/ivan_m.jpg" alt="Ivan Marinov" class="preloader-photo">-->
<!--</div>-->
<!-- end preloader -->
<!-- end preloader -->
<!-- start header -->
<header>
<div class="container">
<div class="row">
<div class="col-md-4 wow fadeIn">
<p><i class="fa fa-phone"></i><a href="tel:+359898726460"> +359 898 726460</a></p>
</div>
<div class="col-md-4 wow fadeIn">
<p><i class="fa fa-envelope-o"></i><a href="mailto:[email protected]" target="_blank"
rel="noopener noreferrer"
save_as="[email protected]"><span> [email protected]</span></a>
</p>
</div>
<div class="col-md-4 wow fadeIn">
<ul class="social-icon">
<li><span>Meet me on</span></li>
<li><a href="https://facebook.com/ivanmarinoff.studio6/" class="fa fa-facebook" target="_blank"
rel="noopener noreferrer"></a>
</li>
<li><a href="https://linkedin.com/in/ivanmarinoff/" class="fa fa-linkedin" target="_blank"
rel="noopener noreferrer"></a></li>
<li><a href="https://instagram.com/ivan.marinoff/" class="fa fa-instagram" target="_blank"
rel="noopener noreferrer"></a></li>
<li><a href="https://github.com/ivanmarinoff/" class="fa fa-github" target="_blank"
rel="noopener noreferrer"></a></li>
</ul>
</div>
</div>
</div>
</header>
<!-- end header -->
<!-- start navigation -->
<nav class="navbar navbar-default templatemo-nav" role="navigation">
<div class="container">
<div class="navbar-header" id="cv">
<button class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
</button>
<a href="static/files/Ivan_Marinov_Resume.pdf" class="navbar-brand" target="_blank"
rel="noopener noreferrer"
onclick="window.open(this.href); return false;">My Resume PDF:📋</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#top">HOME</a></li>
<li><a href="#about">ABOUT ME</a></li>
<li><a href="#service">EXPERIENCE</a></li>
<li><a href="#portfolio">MY PROJECTS</a></li>
<!-- <li><a href="#contact">CONTACT</a></li>-->
</ul>
</div>
</div>
</nav>
<!-- end navigation -->
<!-- start home -->
<section id="home">
<div id="background-video">
<video autoplay loop muted>
<source src="static/images/video_2.mp4" type="video/mp4"/>
Your browser does not support the video tag.
</video>
</div>
<div class="container content">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<h1 class="wow fadeIn" data-wow-offset="50" data-wow-delay="0.9s">Hi, I'm Ivan Marinov
<span>Python WEB Developer</span>
</h1>
<!-- <div class="element">-->
<!-- <div class="sub-element">"Dreams are made bigger on purpose so we can grow into them.” Josie Bissett</div>-->
<!-- <div class="sub-element">I am a dreamer.</div>-->
<!-- <div class="sub-element">Explore my background and skills!</div>-->
<!-- </div>-->
<a data-scroll href="#about" class="btn btn-default wow fadeInUp" data-wow-offset="50"
data-wow-delay="0.6s">ABOUT ME</a>
</div>
</div>
</div>
</section>
<!-- end home -->
<!-- start about -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 class="wow bounceIn" data-wow-offset="50" data-wow-delay="0.3s"><em>ABOUT</em> <span> ME</span></h2>
</div>
<div class="col-md-4 wow fadeIn" data-wow-offset="50" data-wow-delay="0.6s">
<div class="media">
<div class="media-heading-wrapper">
<div class="media-object pull-left">
<i class="fa fa-mobile"></i>
<h4 class="media-heading"><span style="color: #28a7e9">Soft Skills</span></h4><br>
<p style="text-indent: 25px; margin: auto">I am a skilled programmer with a diverse set of
technical expertise and a passion for solving
complex problems.</p>
<p style="text-indent: 25px; margin: auto"> My proficiency extends to a variety of
programming
languages, including Python, where I
excel in developing robust and scalable applications.</p>
<p style="text-indent: 25px; margin: auto">I have a strong foundation in web development,
adept
at crafting interactive and
responsive user interfaces using HTML, CSS, and JavaScript.</p>
<p style="text-indent: 25px; margin: auto">Additionally, I specialize in backend
development,
employing frameworks like Django to
create efficient and powerful server-side applications.</p>
</div>
</div>
</div>
</div>
<br>
<div class="col-md-4 wow fadeIn" data-wow-offset="50" data-wow-delay="0.9s">
<div class="media">
<div class="media-heading-wrapper">
<div class="media-object pull-left">
<i class="fa fa-github"></i>
<h4 class="media-heading"><span style="color: #28a7e9">Version control</span></h4><br>
<p style="text-indent: 25px; margin: auto">Git is my version control tool of choice,
allowing me
to collaborate seamlessly with teams
and track changes efficiently.
<p style="text-indent: 25px; margin: auto">Adept at software testing, I employ testing
frameworks like Pytest and Playwright to
ensure the reliability and functionality of my code.
<p style="text-indent: 25px; margin: auto">In the DevOps space, I am experienced in setting
up
Continuous Integration / Continuous Deployment (CI-CD) pipelines using tools like GitHub
Actions and Docker for
containerization.</p>
</div>
</div>
</div>
</div>
<br>
<div class="col-md-4 wow fadeIn" data-wow-offset="50" data-wow-delay="0.6s">
<div class="media">
<div class="media-heading-wrapper">
<div class="media-object pull-left">
<i class="fa fa-cloud"></i>
<h4 class="media-heading"><span style="color: #28a7e9">Cloud & Services</span></h4><br>
<p style="text-indent: 25px; margin: auto">In Relational Database Management System (RDBMS)
I confidently use databases like MSSQL, PostgreSQL and MySQL.
<p style="text-indent: 25px; margin: auto">My expertise also spans cloud services, as I am
proficient in leveraging platforms such as
AWS for scalable and reliable cloud-based solutions.
<p style="text-indent: 25px; margin: auto">I am well-versed in serverless architecture,
enhancing the efficiency and cost-effectiveness
of cloud-based applications.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end about -->
<!-- start service -->
<section id="service">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 class="wow bounceIn" data-wow-offset="50" data-wow-delay="0.3s"><span>MY</span> <em>TECHNOLOGY</em>
EXPERIENCE</h2>
</div>
<div class="col-md-4 wow fadeIn" data-wow-offset="50" data-wow-delay="0.6s">
<i class="fa fa-html5"></i>
<h4>Web Design</h4>
<p style="text-indent: 25px; margin: auto">My focus is designing and developing visually stunning and
user-friendly websites for a variety of
clients.
<p style="text-indent: 25px; margin: auto">I use a creative combination of Photoshop and Lightroom to
enhance and optimize images for web
applications.
<p style="text-indent: 25px; margin: auto">I work closely with cross-functional teams to recreate client
requirements in responsive HTML
and CSS designs.
<p style="text-indent: 25px; margin: auto">I am guided by modern design trends, ensuring that websites
are aesthetically pleasing and meet
high standards of usability,
<p style="text-indent: 25px; margin: auto">improving overall performance and user experience.</p>
</div>
<div class="col-md-4 active wow fadeIn" data-wow-offset="50" data-wow-delay="0.9s">
<i class="fa fa-cog"></i>
<h4>App Building</h4>
<p style="text-indent: 25px; margin: auto">By building and maintaining web applications using Python, I
use database models and Django ORM integrations for efficient data management.
<p style="text-indent: 25px; margin: auto">To improve application functionality, RESTful APIs are
implemented in my projects.
<p style="text-indent: 25px; margin: auto">I strive to keep the code structure always looking tidy by
applying optimization techniques and best
practices.
<p style="text-indent: 25px; margin: auto">I successfully apply the practical experience gained with
Django, focusing on correct rendering of
templates and routing of URLs.
<p style="text-indent: 25px; margin: auto">I am constantly working on optimizing database queries and
improving overall application
performance.
<p style="text-indent: 25px; margin: auto">I research and implement new practices to ensure application
security and prevent
vulnerabilities.</p>
</div>
<div class="col-md-4 wow fadeIn" data-wow-offset="50" data-wow-delay="0.6s">
<i class="fa fa-laptop"></i>
<h4>Containers</h4>
<p style="text-indent: 25px; margin: auto">To provide scalability and optimization of applications, I
use Docker containers.
<p style="text-indent: 25px; margin: auto">I configure Nginx as a reverse proxy, improving web server
performance and security.
<p style="text-indent: 25px; margin: auto">I use Redis caching to improve data retrieval speed and
reduce database load.
<p style="text-indent: 25px; margin: auto">I integrate RTMP for live media streaming, contributing to
the development of multimedia applications.</p>
</div>
</div>
</div>
</section>
<!-- end servie -->
<!-- start portfolio -->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 class="wow bounceIn" data-wow-offset="50" data-wow-delay="0.3s"><span>MY</span> <em>DEV</em>
PROJECTS</h2>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeIn" data-wow-offset="50" data-wow-delay="0.6s">
<div class="portfolio-thumb">
<a href="https://photography-blog-h15z.onrender.com/" target="_blank" rel="noopener noreferrer">
<img src="static/images/Blog_Home_page.PNG" class="img-responsive" alt="portfolio img 5">
<div class="portfolio-overlay">
<h4>Photography Blog</h4>
<p>This is my photography blog.</p>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeIn" data-wow-offset="50" data-wow-delay="0.6s">
<div class="portfolio-thumb">
<a href="https://wallet-rban.onrender.com" target="_blank" rel="noopener noreferrer">
<!-- <a href="https://personal-wallet.onrender.com" target="_blank" rel="noopener noreferrer">-->
<img src="static/images/Wallet.PNG" class="img-responsive" alt="portfolio img 6">
<div class="portfolio-overlay">
<h4>Personal Wallet</h4>
<p>This is a Personal Wallet site project built with Django that includes a publicly
accessible site, an authentication section, and personal Expenses and income
creation.</p>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeIn" data-wow-offset="50" data-wow-delay="0.6s">
<div class="portfolio-thumb">
<a href="https://school-psy.onrender.com" target="_blank" rel="noopener noreferrer">
<!-- <a href="https://school-sova.onrender.com" target="_blank" rel="noopener noreferrer">-->
<img src="static/images/home_page.png" class="img-responsive" alt="portfolio img 1">
<div class="portfolio-overlay">
<h4>School site</h4>
<p>This is a S.O.V.A-school site project built with Django that includes a publicly
accessible site, an authentication section, and content creation.</p>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeIn" data-wow-offset="50" data-wow-delay="0.6s">
<div class="portfolio-thumb">
<a href="https://car-service-cuh7.onrender.com" target="_blank" rel="noopener noreferrer">
<!-- <a href="https://freelance-services.onrender.com" target="_blank" rel="noopener noreferrer">-->
<img src="static/images/Service_Home_page.PNG" class="img-responsive" alt="portfolio img 2">
<div class="portfolio-overlay">
<h4>Service App</h4>
<p>This is a personal project for a car diagnostics and repair brokerage site.</p>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeIn" data-wow-offset="50" data-wow-delay="0.6s">
<div class="portfolio-thumb">
<a href="https://car-collection-vaw5.onrender.com" target="_blank" rel="noopener noreferrer">
<!-- <a href="https://car-collection-app.onrender.com" target="_blank" rel="noopener noreferrer">-->
<img src="static/images/Car_page.PNG" class="img-responsive" alt="portfolio img 4">
<div class="portfolio-overlay">
<h4>Car Catalogue</h4>
<p>The app allows a user to browse different Cars, including the price, year, and model. The
user can create a catalog of Cars.</p>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeIn" data-wow-offset="50" data-wow-delay="0.6s">
<div class="portfolio-thumb">
<a href="https://menu-planning-calories.onrender.com" target="_blank" rel="noopener noreferrer">
<!-- <a href="https://calories-planning-menu.onrender.com" target="_blank" rel="noopener noreferrer">-->
<img src="static/images/Menu_planning.PNG" class="img-responsive" alt="portfolio img 3">
<div class="portfolio-overlay">
<h4>Planning Calories in Menu</h4>
<p>This app helps you plan your daily and weekly menu to plan how many calories are in each dish.</p>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- end portfolio -->
<!-- start contact -->
<!--<section id="contact">-->
<!-- <div class="container">-->
<!-- <div class="row">-->
<!-- <div class="col-md-12">-->
<!-- <h2 class="wow bounceIn" data-wow-offset="50" data-wow-delay="0.3s">CONTACT <span>WITH ME</span></h2>-->
<!-- </div>-->
<!-- <div class="col-md-6 col-sm-6 col-xs-12 wow fadeInRight" data-wow-offset="50" data-wow-delay="0.6s">-->
<!-- <address>-->
<!-- <p class="address-title">MY LOCATION</p>-->
<!-- <span>I live and develop in the city of Varna, Bulgaria.</span>-->
<!-- <p><i class="fa fa-phone"></i> + 359 898 726460</p>-->
<!-- <p><i class="fa fa-envelope-o"></i> <a href="mailto:[email protected]" target="_blank" rel="noopener noreferrer"-->
<!-- save_as="[email protected]">[email protected]</a>-->
<!-- </p>-->
<!-- <p><i class="fa fa-map-marker"></i> <a-->
<!-- href="https://www.google.com/maps/place/%D0%92%D0%B0%D1%80%D0%BD%D0%B0+%D0%A6%D0%B5%D0%BD%D1%82%D1%8A%D1%80,+%D0%92%D0%B0%D1%80%D0%BD%D0%B0/@43.2093003,27.9016846,15z/data=!3m1!4b1!4m6!3m5!1s0x40a454751e94eedb:0x57ee9fb8a5ea89be!8m2!3d43.2124904!4d27.9098964!16s%2Fg%2F12111mzj?entry=ttu"-->
<!-- target="_blank" rel="noopener noreferrer">Varna 9000, Bulgaria </a></p>-->
<!-- </address>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!--</section>-->
<!-- end contact -->
<!--<div id="cookie-consent-banner">-->
<!-- We use cookies and similar technologies for analytics. By using this site, you agree to this use.-->
<!-- <button id="accept-cookies">Accept</button>-->
<!-- <button id="decline-cookies">Decline</button>-->
<!--</div>-->
</body>
<!-- start copyright -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<p class="bounceIn" data-wow-offset="50" data-wow-delay="0.3s">
<a href="https://github.com/ivanmarinoff/" target="_blank" rel="noopener noreferrer">
Copyright © 2024
ivanmarinoff</a></p>
</div>
</div>
</div>
<style>.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
@keyframes octocat-wave {
0%, 100% {
transform: rotate(0)
}
20%, 60% {
transform: rotate(-25deg)
}
40%, 80% {
transform: rotate(10deg)
}
}
@media (max-width: 500px) {
.github-corner:hover .octo-arm {
animation: none
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
}
</style>
<a href="https://github.com/ivanmarinoff/" class="github-corner" aria-label="View my GitHub"
rel="noopener" target="Blank">
<!--suppress CssUnresolvedCustomProperty -->
<svg width="60" height="60" viewBox="0 0 250 250"
style="fill:var(--github-bg); color:var(--dark-color-d); position: absolute; top: 0; border: 0; right: 0;"
aria-hidden="true">
<path pointer-events="fill" d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
<path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"
fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path>
<path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z"
fill="currentColor" class="octo-body"></path>
</svg>
</a>
</footer>
<!-- end copyright -->
<script id="cookieinfo" src="/static/js/cookieinfo.min.js"></script>
</html>