+ 6
Please help me out...
Is <h1></h1> and <strong></strong> same thing.. Because they both make letters bold..
24 Respostas
+ 9
No both are different things
The <h1></h1>Ā in HTML, will usually be the title of a post, or other emphasized text on the page.Ā Ā There are other header tags in HTML too, like an h2, h3, h4, etc.Ā Ā
<strong></strong> & <b></b> are makes d letters bold.
+ 7
<b> </b>and <strong></strong> are similar since strong makes it bold and h1 makes it bold as well as bigger also h1 is the first heading of the page while strong can be used anywhere... š
+ 4
You could say <b></b> and <strong></strong> are similar. But h1 and strong not. Strong just makes the text bolder, but h1 changes even the size of text.
+ 4
Those letters are shown in the tabs in the browser...Dedpite not being seen in Sololearn...
+ 4
Akpenyi Judy </div is the closing tag of <div></div> element, which is used as a container for other elements. It is well explained in HTML lessons...
+ 3
<h1> - <h6> tags are important for SEO (Search Engine Optimization) the most important sentence/titel should be included in <h1> tag and even better include key words. <Strong> is also importent for SEO but less than <h1>.
+ 3
Welcome. All i can say is happy learningš
+ 2
Oh...
+ 2
Thanks
+ 2
But what's the essence of the <title></title> if the letters between it isn't visible...
+ 2
<h1> tag will give font size whether <strong>will give bold letters.
So this is the main difference.
+ 2
<div> is very helpful for making "class" and "I'd" for decorating in CSS.
+ 2
no h1-h6 is just an heading while strong is for bold
+ 2
Dear Alpenyi -further clarification is as below.
You are writing web page by html. However by using css you can style the web page as you like which is most interesting .
Say there are lot of paragraphs in the web page.
But you want a particular para to be decorated then you demarcate the same by <div Id="dm" > ......</div>.
Now in the css file you can write say font color & font size in the following way
.dm{ color :red; font-size:20px;}
When you run html it will pickup the style from css .dm
You will definitely understand when you study css also along with html.
+ 2
There is a small mistake made by me in the previous answer ---pl correct. Instead of .dm in css it should be #dm since it id.
+ 1
Oh nice.. Thanks alot
+ 1
What about </div> just came across it in my HTML course
+ 1
Am still in HTML Attributes.. Thanks
+ 1
<h1></h1> tags are header tags, and <strong></strong> tags make stuff bold. There is also<h2><h3><h4>, etc, all the way to <h6>. The larger the number the smaller the header. <h1> would make the font bigger as well as making it bold.
+ 1
Damodar mahanta am still learning HTML haven't gotten to CSS so am abit confused about what you said.. But thanks for the tips guys