-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar-2.html
79 lines (63 loc) · 1.72 KB
/
sidebar-2.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">
<title>Sidebar. Dima L</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<script>
hljs.highlightAll();
hljs.initLineNumbersOnLoad({
singleLine: true
});
</script>
<link rel="stylesheet" href="../exercise/assets/css/main.css">
<link rel="stylesheet" href="../exercise/assets/css/code.css">
</head>
<body>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2BRPRR9Q9Y"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-2BRPRR9Q9Y');
</script>
<style>
p {
width: 270px;
}
.sidebar-header {
font-weight: bold;
font-size: 10px;
color: #19456E;
}
.sidebar-text {
color: #6E4219;
line-height: 1.4;
}
.members-count {
font-weight: bold;
font-size: 20px;
}
.green-dot {
width: 8px;
}
</style>
<p class="sidebar-header">
Hades | Hades II
</p>
<p class="sidebar-text">
The subreddit for Hades and Hades II, the godlike rogue-likes from Supergiant Games.
</p>
<p class="members-count">
<img src="https://dimal-dev.github.io/html-css/assets/green-round-dot.png" class="green-dot">
73 Online
</p>
</body>
</html>