-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (78 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="assets/img/favicon.webp" type="image/x-icon" />
<title>Sync Browser : Sync Pair of Browsers</title>
<!---------------------------------------------->
<!--SECTION: seo of page -->
<meta
name="description"
content="Sync-Browser is a fun web app that allows you to collaborate in real-time across different browser tabs. Watch arrows changing directions together as you move your browser tab on the screen, creating a lively and engaging visual experience."
/>
<meta
name="keywords"
content="Sync Browser, localstorage ,synchronization, security, github, javascript, html, css, firebase"
/>
<meta name="author" content="ankitjha2603" />
<meta property="og:title" content="Sync Browser : Sync Pair of Browsers" />
<meta
property="og:description"
content="Sync-Browser is a fun web app that allows you to collaborate in real-time across different browser tabs. Watch arrows changing directions together as you move your browser tab on the screen, creating a lively and engaging visual experience."
/>
<meta property="og:type" content="website" />
<link
rel="sitemap"
type="application/xml"
title="Sitemap"
href="https://ankitjha2603.github.io/sitemap.xml"
/>
<meta
property="og:image"
content="https://ankitjha2603.github.io/sync-browser/assets/img/favicon.webp"
/>
<meta
property="og:url"
content="https://ankitjha2603.github.io/sync-browser/"
/>
<meta name="theme-color" content="#008037" />
<!---------------------------------------------->
<!---------------------------------------------->
<!--SECTION: google tags -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-4J64SC1QY7"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-4J64SC1QY7");
</script>
<!--Google verification--->
<meta
name="google-site-verification"
content="5QsjbXuM1buDwEtnxWDKN9dE1qgf_dgz646EdwUxSWg"
/>
<!---------------------------------------------->
<!---------------------------------------------->
<!--SECTION: bootstrap css cdn -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<!---------------------------------------------->
<link rel="stylesheet" href="assets/style/style.css" />
</head>
<body>
<div class="arrow red"></div>
<div class="arrow yellow"></div>
</body>
<script src="assets/src/script.js"></script>
</html>