-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (78 loc) · 1.94 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
<!DOCTYPE html>
<html lang="it">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-PGGTKB404M"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-PGGTKB404M");
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Italia JS è La community JavaScript italiana nata da Milano JS. Ci trovi su Discord!"
/>
<title>Italia JS - La community JavaScript italiana</title>
<style>
body {
font-family: Courier, monospace;
color: #333;
background: #eee none;
}
h2 {
color: #666;
}
a {
color: #333;
}
iframe {
max-width: 100%;
}
footer {
margin-top: 20px;
}
@media (prefers-color-scheme: dark) {
body {
color: #eee;
background: #333 none;
}
h2 {
color: #999;
}
a {
color: #eee;
}
}
</style>
</head>
<body>
<header>
<h1>Italia JS</h1>
<h2>La community JavaScript italiana</h2>
</header>
<p>Unisciti a noi sul nostro server Discord</p>
<iframe
src="https://discord.com/widget?id=782921551225028618&theme=dark"
width="400"
height="250"
allowtransparency="true"
frameborder="0"
sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"
></iframe>
<footer>
<a href="https://twitter.com/italia_js">Twitter</a> |
<a href="https://github.com/italia-js">GitHub</a> |
<a href="https://github.com/italia-js/code-of-conduct"
>Codice di condotta</a
>
</footer>
</body>
</html>