1<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Code+Pro"> [Replace your font with the Source Code Pro font.]
1Check 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>
7body {
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