-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_fonts.html
More file actions
31 lines (31 loc) · 1.08 KB
/
css_fonts.html
File metadata and controls
31 lines (31 loc) · 1.08 KB
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
<!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">
<link rel="stylesheet" href="<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,200&display=swap" rel="stylesheet">
<title>CSS Fonts</title>
<style>
p{
font-family: 'Poppins', sans-serif;
font-size: 30px; /*1 px=1/296 inch8*/
line-height: 4em;
}
span{
font-weight: bold;
font-style:italic;
}
</style>
</head>
<body>
<h3>CSS Fonts tutorial</h3>
<p>Here we will learn about CSS <span>Fonts</span></p>
<br>
<a href="https://fonts.google.com/"target="_blank">Go To Google Fonts</a>
<br><br>
<a href="https://www.cssfontstack.com/"target="_blank">Go To Website for details</a>
</body>
</html>