how to add fonts like mac in your web page using html css

Solutions on MaxInterview for how to add fonts like mac in your web page using html css by the best coders in the world

showing results for - "how to add fonts like mac in your web page using html css"
Brenton
19 May 2019
1Browse google fonts and search for Roboto family 
2
3
4go to google fonts: https://fonts.google.com
5					/specimen/Roboto?selection.family=Raleway:wght@200
6
7add font with thickness 100
8
9import link:<link rel="preconnect" href="https://fonts.gstatic.com"><link href="https://fonts.googleapis.com
10/css2?family=Roboto:wght@100&display=swap" rel="stylesheet">
11
12
13
14CSS rules to specify families( add the below code in your css files )
15
16font-family: 'Roboto', sans-serif;
17
18
19
20
21
22
23
similar questions
use font on website html