Answers for "html h1 font size and color"

3

how to change h1 color in html

<h1 style="color: red;">
  This is a Level1 Heading
</h1>
Posted by: Guest on February-25-2021
3

change font size of h1 in html

<style>
h1 { 
	font-size: 100px;
   }
</style>
Posted by: Guest on February-12-2021

Browse Popular Code Answers by Language