Skip to content

Commit 69485b9

Browse files
committed
Initial commit
1 parent 374a2c6 commit 69485b9

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

Diff for: .htaccess

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Options +Indexes

Diff for: README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# web-font-loading-demos
22
A bunch of demos for different web font loading strategies. Companion to https://www.zachleat.com/web/comprehensive-webfonts/
3+
4+
* [No @font-face](./dont.html)

Diff for: dont.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Don’t use web fonts</title>
7+
<style>
8+
body {
9+
font-family: sans-serif;
10+
font-weight: 400;
11+
font-style: normal;
12+
}
13+
</style>
14+
</head>
15+
<body>
16+
<h1>Don’t use web fonts</h1>
17+
<p>This is a paragraph. <strong>This is heavier text.</strong> <em>This is emphasized text.</em> <strong><em>This is heavier and emphasized text.</em></strong></p>
18+
</body>
19+
</html>

0 commit comments

Comments
 (0)