+ 1
What tag is used for increase the size of headings in html document?
headings in html document.
10 Respuestas
0
yes of course I know that heading size. but I want increase the heading default size.?
0
I think we can apply the font-size of that heading in inline styling with using style tag right?
0
Ohhhhh. Okay. That's an entirely different question.
In CSS:
h1 { font-size: ___; }
etc.
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>
0
yeah tq so much for ur answer. ☺ have a great day
0
you're welcome. you have a great day as well! :)
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;
}
0
wow nice tq friend
0
no problem