How to apply global font family to whole HTML document with CSS

2 Answers

0 votes
* {
	font-family: arial,sans-serif;
}

 



answered Dec 18, 2020 by avibootz
0 votes
/*
   !important = nothing can override this style
*/

* {
    font-family: arial,sans-serif !important;
}

 



answered Dec 18, 2020 by avibootz
edited Dec 18, 2020 by avibootz

Related questions

2 answers 332 views
2 answers 321 views
1 answer 328 views
1 answer 277 views
2 answers 356 views
356 views asked Jul 16, 2016 by avibootz
1 answer 671 views
...