-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (91 loc) · 3.77 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Squdo.js — DEVS • BAND</title>
<meta name="description" content="Squdo helps to detect what graphic formats your browser's <img> tag supports">
<meta name="author" content="DEVS • BAND">
<meta property="og:title" content="Squdo.js — DEVS • BAND">
<meta property="og:type" content="website">
<meta property="og:url" content="https://nickdeny.github.io/squdo.js/">
<meta property="og:description"
content="Squdo helps to detect what graphic formats your browser's <img> tag supports">
<link rel="stylesheet" href="styles.css">
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/site.webmanifest">
<link rel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#212121">
<link rel="shortcut icon" href="favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<meta property="og:image:height" content="400">
<meta property="og:image:width" content="400">
<meta property="og:image:type" content="image/jpg">
<meta property="og:image" content="https://nickdeny.github.io/squdo.js/images/social-square.jpg">
<meta property="og:image:height" content="628">
<meta property="og:image:width" content="1200">
<meta property="og:image:type" content="image/jpg">
<meta property="og:image" content="https://nickdeny.github.io/squdo.js/images/social.jpg">
<meta property="twitter:image" content="https://nickdeny.github.io/squdo.js/images/social.jpg">
<meta name="twitter:card" content="summary_large_image">
<meta property="telegram_channel" content="@webdevblog">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2C5GTN4H5Y"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-2C5GTN4H5Y');
</script>
</head>
<body>
<div class="page">
<header>
<div class="container">
<h1 class="header-title">
Squdo.js
</h1>
<p class="header-description">
Squdo helps to detect what graphic formats your browser's <img> tag supports
</p>
</div>
</header>
<main>
<div id="loader" class="spinner" role="status">
<div class="spinner-icon"></div>
<p id="loader-label" class="spinner-label">
Javascript is required to work correctly
</p>
</div>
<div class="container">
<div id="app">
<template id="template-image">
<div class="image">
<div class="image-icon"></div>
<h4 class="image-name"></h4>
<span class="image-label"></span>
</div>
</template>
</div>
</div>
</main>
<footer>
<div class="container">
<div class="footer">
<a href="https://github.com/nickdeny/squdo.js" target="_blank" class="github">
Source code on GitHub
</a>
<a href="https://devs.band/?utm_source=squdo&utm_medium=copyright&utm_campaign=native" target="_blank"
class="copyright">
<span>Created by</span>
<img src="https://devs.band/ext/logo.svg" alt="DEVS • BAND">
</a>
</div>
</footer>
<script src="scripts.js"></script>
</div>
</body>
</html>