+ 2
How to make font bigger than h1 tag
4 ответов
+ 6
in html you will have to add
<h1 style=font-size:200px>
0
Just add:
h1 {
font-size: 150%; // makes font bigger on 50%
}
0
Or add size in pixels how many how you want:
h1 {
font-size: 100px; // makes font size 100px
}
0
You can modify de font-size in your css to the size that you want... =)