forked from chinmay021/web-development-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtut17.html
More file actions
28 lines (25 loc) · 655 Bytes
/
tut17.html
File metadata and controls
28 lines (25 loc) · 655 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Css Fonts</title>
<link href="https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap" rel="stylesheet">
<style>
p {
font-family: 'Metal Mania', cursive;
font-size: 23px;
/*pixel = 1/96 of an inch*/
line-height: 2em;
}
span{
font-weight: bold;
font-style: italic;
}
</style>
</head>
<body>
<h3>CSS Fonts</h3>
<p>Lets play with <span>fonts</span></p>
</body>
</html>