- Forums
- HTML
- How To Make Words Very Big Wigh Huge Fonts In Text
the other day i asked how i can make a letters bigger, i wanted to thank you so i created this post here to show others who have the same question as i do. [765], Last Updated: Sat May 18, 2024
mort
Sun Mar 13, 2011
0 Comments
982 Visits
the other day i asked how i can make a letters bigger, i wanted to thank you so i created this post here to show others who have the same question as i do.
i wanted to know how to make words big, so this is how you do it: so for my example, i will be using the word: wallpaperama
you have some options using HTML or CSS
for using HTML you can use this:
<h1>wallpaperama</h1>
looks like this:
wallpaperama
another way is to use the <font> tag:
<font size="100">wallpaperama</font>
this is how it looks:
wallpaperamathe best way is to use css by using the style properties like this:
<div style="font-size:125px;">wallpaperama</div>
this is how it looks like:
wallpaperama
so as yo can see, all you have to do to make it bigger, change the font size from 125px to a bigger number, you can go as high as you want to..