Skip to content

Commit a61fbc6

Browse files
committed
exercises10
1 parent 9d2307b commit a61fbc6

File tree

3 files changed

+16
-3
lines changed

3 files changed

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

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width" />
6-
<!-- Add your code below this line -->
7-
6+
<link href="https://fonts.googleapis.com/css2?family=Borel:wght@400;500;700&display=swap" rel="stylesheet" />
87
<link rel="stylesheet" type="text/css" href="./styles.css" />
98
<title>10 Your Own Font</title>
109
</head>

exercises/10-Your-Own-Font/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
.myTitle {
2-
/* Add your code below this line */
2+
font-family: Borel;
33
}

0 commit comments

Comments
 (0)