How To Tutorials
How To Tutorials

Reputation: 9

Changing HTML Font Size

At The Moment I am creating a website and at the moment the title looks like this

<h1><font face="tempus sans itc" color="White"><div style="text-align:center">Welcome To My Website. View My Projects Here</h1></div>

How to I make my font size bigger that ?

Upvotes: 1

Views: 137

Answers (1)

Krishna Chandran
Krishna Chandran

Reputation: 399

You can use style="font-size:required size" property for this purpose.For example :

<h1 style="font-size:300%">This is a heading</h1>

For more info : Click here

Upvotes: 2

Related Questions