1/* copy paste it in your .css file*/
2@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
3
4/* copy paste it in your .html or .php file*/
5<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap" rel="stylesheet" type="text/css">
1//This is from google fonts
2// to use import
3@import url('https://fonts.googleapis.com/css?family=Open+Sans');
4//to use link in head tag
5<link rel="preconnect" href="https://fonts.gstatic.com">
6<link href="https://fonts.googleapis.com/css2?family=Open+Sans" rel="stylesheet">
1<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,300" rel="stylesheet" type="text/css">
2