-
Notifications
You must be signed in to change notification settings - Fork 0
/
13.html
32 lines (25 loc) · 907 Bytes
/
13.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!-- Fonts in CSS -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fonts</title>
<style>
/* The font-family property specifies the font for an element.
The font-family property can hold several font names as a "fallback" system. If the browser does not support the first font, it tries the next font.
We can use google fonts to add more fonts
Font size is to determine size of the font */
p {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 18px;
font-weight: 100;
font-style: italic;
}
</style>
</head>
<body>
<p>Fonts in CSS</p>
</body>
</html>