What tag is used for increase the size of headings in html document? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What tag is used for increase the size of headings in html document?

headings in html document.

27th Jun 2018, 7:12 AM
K V CHAITANYA REDDY
10 Answers
27th Jun 2018, 7:23 AM
Janningā­
Janningā­ - avatar
0
yes of course I know that heading size. but I want increase the heading default size.?
27th Jun 2018, 7:26 AM
K V CHAITANYA REDDY
0
I think we can apply the font-size of that heading in inline styling with using style tag right?
27th Jun 2018, 7:28 AM
K V CHAITANYA REDDY
0
Ohhhhh. Okay. That's an entirely different question. In CSS: h1 { font-size: ___; } etc.
27th Jun 2018, 7:29 AM
Janningā­
Janningā­ - avatar
0
Umm, yeah. Inline styling won't change the default per se, as it only affects that particular element, but: <h1 style="font-size: __;">My Heading</h1>
27th Jun 2018, 7:31 AM
Janningā­
Janningā­ - avatar
0
yeah tq so much for ur answer. ā˜ŗ have a great day
27th Jun 2018, 8:35 AM
K V CHAITANYA REDDY
0
you're welcome. you have a great day as well! :)
27th Jun 2018, 8:40 AM
Janningā­
Janningā­ - avatar
0
if you want to change the font size of a particular element assIgn an "id" to it, then in css, change the "font-size" atribute. html: <h1 id="page-title">Page Title</h1> css: #page-title{ font-size:__px; }
27th Jun 2018, 9:46 AM
Lorenzo Sandoval
Lorenzo Sandoval - avatar
0
wow nice tq friend
27th Jun 2018, 10:07 AM
K V CHAITANYA REDDY
0
no problem
27th Jun 2018, 10:19 AM
Lorenzo Sandoval
Lorenzo Sandoval - avatar