-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (48 loc) · 1.1 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
<html>
<head>
<style>
body {
background: #f0f0f0;
text-align: center;
}
.badge {
background: #333;
color: rgb(255, 231, 164);
display: inline-block;
padding: 0.25rem 0.25rem;
font-size: 0.9rem;
font-family: monospace;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<h1>
Animated Deno Logo
</h1>
<p>
<img src="deno-circle-thunder.gif" width="200" height="200" />
</p>
<div class="badge">200px 24fps</div>
<p>
<img src="deno-circle-24fps.gif" />
</p>
<div class="badge">300px 24fps</div>
<p>
<img src="deno-circle-12fps.gif" />
</p>
<div class="badge">300px 12fps</div>
<p>
<img src="deno-circle-small-24fps.gif" />
</p>
<div class="badge">150px 24fps</div>
<p>
<img src="deno-circle-small-12fps.gif" />
</p>
<div class="badge">150px 12fps</div>
<p>
<img src="deno-rect-24fps.gif" />
</p>
<div class="badge">Original 24fps</div>
</body>
</html>