Why doesn't the system recognize my fonts? ยป index.html
1 |
<!DOCTYPE html>
|
---|---|
2 |
<html>
|
3 |
<head>
|
4 |
<style>
|
5 |
.arimo { |
6 |
font-family: "Arimo", sans-serif; |
7 |
}
|
8 |
|
9 |
.cousine { |
10 |
font-family: "Cousine", monospace; |
11 |
}
|
12 |
|
13 |
.tinos { |
14 |
font-family: "Tinos", serif; |
15 |
}
|
16 |
</style>
|
17 |
<meta charset="UTF-8"> |
18 |
<title>Font Test</title> |
19 |
</head>
|
20 |
<body>
|
21 |
<p class="arimo">Arimo paragraph</p> |
22 |
<p class="cousine">Cousine paragraph</p> |
23 |
<p class="tinos">Tinos paragraph</p> |
24 |
</body>
|
25 |
</html>
|