0
How to add google font to my project and use that font in my project? Can someone explain with step by step procedure?
How to add google font to my project and use that font in my project? Can someone explain with step by step procedure?

<!DOCTYPE html>
<html lang='en' xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta charset='utf-8' />
<title>Google Font | Mindstick</title>
<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=Roboto:wght@100&display=swap' rel='stylesheet'>
<style>
h1 {
font-family: 'Roboto', sans-serif;
}
</style>
</head>
<body align='center'>
<h1> Welcome to Mindstick Software Private Limited</h1>
</body>
</html>
