-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (64 loc) · 3.58 KB
/
index.html
File metadata and controls
68 lines (64 loc) · 3.58 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/Favicon.svg" />
<link rel="apple-touch-icon" href="/Favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>OSI Model Simulator</title>
<meta name="title" content="OSI Model Simulator" />
<meta name="description" content="An interactive app that simulates the OSI model and shows how messages travel on the internet through the seven layers—from application to physical." />
<meta name="keywords" content="OSI model, network layers, internet, message transmission, TCP/IP, data encapsulation, networking, Roboticela" />
<meta name="author" content="Roboticela" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="OSI Model Simulator" />
<meta property="og:description" content="An interactive app that simulates the OSI model and shows how messages travel on the internet through the seven layers." />
<meta property="og:image" content="https://app.osi-model-simulator.roboticela.com/Favicon.svg" />
<meta property="og:image:type" content="image/svg+xml" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="OSI Model Simulator" />
<meta property="og:site_name" content="OSI Model Simulator" />
<meta property="og:url" content="https://app.osi-model-simulator.roboticela.com/" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="OSI Model Simulator" />
<meta property="twitter:description" content="An interactive app that simulates the OSI model and shows how messages travel on the internet through the seven layers." />
<meta property="twitter:image" content="https://app.osi-model-simulator.roboticela.com/Favicon.svg" />
<meta property="twitter:image:alt" content="OSI Model Simulator" />
<!-- Theme Color -->
<meta name="theme-color" content="#000000" />
<!-- Microsoft Clarity Analytics -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "viwp403njf");
</script>
<!-- <script>
(function(){
if (typeof window !== 'undefined' && (window.__TAURI_INTERNALS__ !== undefined || window.__TAURI_METADATA__ !== undefined)) return;
var el = [document.documentElement, document.body].filter(Boolean).pop();
if (!el) return;
(function(s){s.dataset.zone='10543942',s.src='https://gizokraijaw.net/vignette.min.js'})(el.appendChild(document.createElement('script')));
/* OnClick (Popunder) - commented out for now
(function(s){s.dataset.zone='10543951',s.src='https://al5sm.com/tag.min.js'})(el.appendChild(document.createElement('script')));
var s3 = document.createElement('script');
s3.src = 'https://3nbf4.com/act/files/tag.min.js?z=10543957';
s3.dataset.cfasync = 'false';
s3.async = true;
el.appendChild(s3);
*/
})();
</script> -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>