Skip to content

Commit 66cbc6d

Browse files
committed
linked font commit
1 parent ef3621d commit 66cbc6d

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width" />
6+
<!--your code here -->
7+
8+
<link rel="stylesheet" type="text/css" href="./styles.css" />
9+
10+
<title>10 Your Own Font</title>
11+
</head>
12+
<body>
13+
<h1 class="myTitle">My unique font</h1>
14+
</body>
15+
</html>

exercises/09-Anchor-Styles/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<link rel="stylesheet" type="text/css" href="./styles.css" />
77
<title>09 Anchor Styles</title>
88
</head>
9-
9+
1010
<body>
1111
<a class="threeDimension" href="#">Click me</a>
1212
</body>

exercises/09-Anchor-Styles/styles.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
.threeDimension {
32
display: block;
43
border: 1px solid;
@@ -12,5 +11,4 @@
1211

1312
a.threeDimension:active {
1413
border-color: #000 #aaa #aaa #000;
15-
16-
}
14+
}

exercises/10-Your-Own-Font/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
<title>10 Your Own Font</title>
1111
</head>
1212
<body>
13-
<h1 class="myTitle">My unique font</h1>
13+
<h1 class="myTitle"><link href="https://fonts.google.com/specimen/Smooch" rel="stylesheet">My unique font</h1>
1414
</body>
1515
</html>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
.myTitle {
2-
/*your code here*/
2+
font-family: smooch;
33
}

0 commit comments

Comments
 (0)