Answers for "how to add google fonts in html page"

6

add google font html

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Code+Pro"> [Replace your font with the Source Code Pro font.]
Posted by: Guest on March-24-2021
4

how to enter google fonts in css

@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
.generic_class {
	font-family: 'Open Sans', sans-serif;
}
Posted by: Guest on November-10-2020

Code answers related to "how to add google fonts in html page"

Browse Popular Code Answers by Language