Resources
css
Fonts

Fonts

Fonts to be import to your website

Free fonts site

- Google Fonts

https://fonts.google.com/ (opens in a new tab)

googlefontsImage

Demo of import fonts to website
<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=Be+Vietnam+Pro:ital,wght@1,300&family=Inter&display=swap" rel="stylesheet">
 
body{
    font-family: 'Be Vietnam Pro', sans-serif;
    font-family: 'Inter', sans-serif;
}