6

How to have a title that is larger than h1? I have made mt title size "h1" but I think that it is not large enough. Is there a way to make the title even larger? Thank you in advance!

Anas Rafei
  • 91
  • 1
  • 1
  • 3

3 Answers3

7

To adjust the look of your site you will typically use CSS. You can define your various header sizes in a separate css file or inline for this instance like below:

<h1 style="font-size: 50px">Your Text Here</h1>

I recommend you look into some CSS. https://www.w3schools.com/ is a decent starting point, friendly and interactive.

BeRT2me
  • 12,699
  • 2
  • 13
  • 31
ClockworkKettle
  • 136
  • 1
  • 8
  • _... https://www.w3schools.com/ is a decent starting point...._ w3fools should NOT be your source for learning technical stuff It is of very poor quality having outdated and buggy tutorials – B001ᛦ Aug 04 '20 at 09:23
  • Thank you! I appreciate it. – Anas Rafei Aug 04 '20 at 10:19
2

You want the font-size to be larger? You can just specify it like that:

h1 {
  font-size: (x)px;
  font-weight: bolder;

}
B001ᛦ
  • 2,036
  • 6
  • 23
  • 31
Ahmad Khidir
  • 140
  • 1
  • 9
0

Use stylesheet to make it bigger e.g h1{ font-size:3rem;}

You can specify the size and unit you want.

Fritzdultimate
  • 372
  • 2
  • 11