Skip to content

Commit 8953392

Browse files
committed
update
1 parent 9a1071d commit 8953392

File tree

4 files changed

+44
-0
lines changed

4 files changed

+44
-0
lines changed

_template.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!doctype html>
2+
<html lang="en-US">
3+
<head>
4+
<title>Front End</title>
5+
<link href="css/style.css" type="text/css" rel="stylesheet">
6+
</head>
7+
<body>
8+
9+
<div id="wrap">
10+
<div id="content">
11+
12+
13+
</div>
14+
</div>
15+
16+
</body>
17+
</html>

css/font-stacks.css

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* Google: Web Safe Font Stacks;
3+
*/
4+
h1 {
5+
font-family: arial, sans-serif;
6+
}

font-stacks.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html lang="en-US">
3+
<head>
4+
<title>Front End</title>
5+
<link href="css/style.css" type="text/css" rel="stylesheet">
6+
<link href="css/font-stacks.css" type="text/css" rel="stylesheet">
7+
</head>
8+
<body>
9+
10+
<div id="wrap">
11+
<div id="content">
12+
13+
<h1>This is my story</h1>
14+
<h2>I hope it's full of glory</h2>
15+
16+
</div>
17+
</div>
18+
19+
</body>
20+
</html>

index.html

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ <h1>Learning CSS/HTML</h1>
2020
<a href="pseudo.html">Pseudo</a>
2121
<a href="sizing-units.html">Sizing Units</a>
2222
<a href="dimensions.html">Dimensions</a>
23+
<a href="font-stacks.html">Font Stacks</a>
2324
</div>
2425

2526
<h1>Heading 1</h1>

0 commit comments

Comments
 (0)