In this article we will learn about some of the frequently asked HTML programming questions in technical like “use google font in html” Code Answer’s. When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look very unprofessional and you may be open to security risks. Error or stack handling on html was simple and easy. An error message with filename, line number and a message describing the error is sent to the browser. This tutorial contains some of the most common error checking methods in HTML. Below are some solution about “use google font in html” Code Answer’s.
google fonts css
xxxxxxxxxx
1
Check out the font names and change 'finger paint' to another font name to how different google font appears on webpage.
2
<!DOCTYPE html>
3
<html>
4
<head>
5
<link href='https://fonts.googleapis.com/css?family=Finger Paint' rel='stylesheet'>
6
<style>
7
body {
8
font-family: 'Finger Paint';font-size: 22px;
9
}
10
</style>
11
</head>
12
<body>
13
14
<h1>Finger Paint</h1>
15
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
16
<p>123456790</p>
17
<p>ABCDEFGHIJKLMNOPQRSTUVWXYZ</p>
18
<p>abcdefghijklmnopqrstuvwxyz</p>
19
20
</body>
21
</html>
22
use google font in html
xxxxxxxxxx
1
body {
2
font-family: '*Insert google font';font-size: 22px;
3
}