<!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=Baloo+Tammudu+2:wght@500&display=swap" rel="stylesheet">
<style>
p {
font-family: 'Baloo Tammudu 2', cursive;
font-size: 15px;
/* 1/96th of an inch*/
line-height: 1.3em;
}
span {
font-weight: bold;
font-size: larger;
}
</style>
</head>
<body>
<h3>CSS Font</h3>
<p>Lets play with Css <span> Fonts </span> . It is very exciting</p>
</body>
</html>