-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (79 loc) · 2.96 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
<html>
<head>
<meta charset="UTF-8" />
<title>DogWEB</title>
<link rel="stylesheet" href="" />
<link rel="shortcut icon" href="" type="image/x-icon" />
<link rel="stylesheet" href="style.css" />
<title>Dog Web</title>
</head>
<body>
<iframe src="https://status-servicii.betteruptime.com/badge?theme=dark" width="250" height="30" frameborder="0" scrolling="no"></iframe>
<section id="navigation">
<div id="nav-content">
<div class="navigation">
<ul>
<li><a href="#">Úvod</a></li>
<li><a href="#">O Nás</a></li>
<li><a href="#">Služby</a></li>
<li><a href="#">Ceník</a></li>
<li><a href="#">F.A.Q.</a></li>
<li><a href="#">Kontakt</a></li>
</ul>
</div>
</div>
<a href="https://betteruptime.com/?utm_source=status_badge">
<img
src="https://betteruptime.com/status-badges/v1/monitor/gzcz.svg"
/>
</a>
</section>
<iframe src="https://status.1n.re/badge?theme=light" width="250" height="30" frameborder="0" scrolling="no">
</iframe>
<div style="position: relative;">
<iframe src="https://status.1n.re/badge?theme=light" width="250" height="30" frameborder="0" scrolling="no"></iframe>
<style>
/* Your custom CSS rules for the overlay */
bg-transparent light {
font-family: Times New Roman, sans-serif !important;
background-color: #f0f0f0;
}
</style>
<iframe src="https://status.1n.re/badge?theme=light" width="250" height="30" frameborder="0" scrolling="no">
<style>
/* Your custom CSS rules */
body {
font-family: Arial, sans-serif !important;
background-color: #f0f0f0;
}
</style>
</iframe>
<iframe src="https://order.betteruptime.com" width="1000" height="800"></iframe>
</div>
<script>
// Function to reset announcement visibility
function resetAnnouncementDisplay() {
// For localStorage
try {
if (localStorage.getItem('announcementShown') !== null) {
localStorage.removeItem('announcementShown'); // Adjust the key as needed
// localStorage.setItem('announcementShown', 'false'); // Alternatively, reset its value
}
} catch (e) {
console.error("Error accessing localStorage", e);
}
// For cookies
try {
document.cookie = "announcementClosed=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;"; // Adjust the cookie name as needed
// document.cookie = "announcementClosed=false; path=/;"; // Alternatively, reset its value
} catch (e) {
console.error("Error manipulating cookies", e);
}
}
// Call the reset function before the widget script loads
resetAnnouncementDisplay();
</script>
<!-- Announcement widget script follows the reset logic -->
<script src="https://uptime.betterstack.com/widgets/announcement.js" data-id="142566" async="async" type="text/javascript"></script>
</body>
</html>