-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdev_sandbox.html
42 lines (42 loc) · 964 Bytes
/
dev_sandbox.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
<html>
<head>
<link rel="shortcut icon" type="image/x-icon" href="favicon-dev.png">
<link rel="stylesheet" href="styles/main.css">
<title>Frogs - developer sandbox</title>
<style>
body{
text-align: center;
}
@font-face {
font-family: hl_icons;
src: url(/fonts/hl_icons.ttf);
font-weight: bold;
}
.halflife {
font-family: hl_icons;
}
@font-face {
font-family: monocraft;
src: url(/fonts/monocraft.ttf);
font-weight: bold;
}
.mc {
font-family: monocraft;
}
</style>
</head>
<body>
<h1>elements</h1>
<button>button</button>
<p>text</p>
<h1>fonts</h1>
<h3>halflife icons (/fonts/hl_icons.ttf)</h3>
<div class="halflife">
<p>Lorem ipsum odor amet, consectetuer adipiscing elit.</p>
</div>
<h3>monocraft icons (/fonts/monocraft.ttf)</h3>
<div class="mc">
<p>Lorem ipsum odor amet, consectetuer adipiscing elit.</p>
</div>
</body>
</html>