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 316 views
2 answers 299 views
1 answer 299 views
1 answer 266 views
2 answers 341 views
341 views asked Jul 16, 2016 by avibootz
1 answer 655 views
...