0
<h1>This is heading 1<b></h1>
what is this <b> tag??
5 odpowiedzi
+ 1
well <b> have its closing tag and in your case
<h1>this is heading 1<b><h1>
wont work as nothing in bold section and h1 is already big enough thn bold font so it basically wont show
one more thing why im supposing you were asking for <br> rather thn <b>
+ 1
idk why this code even have <b> tag
0
<b> tag is for bold. it makes font a bit bold thn others
<p> this is <b>bold</b></p>
0
but there is no closing tag I've got this form sololearn practise.. and I don't understand what is this
0
<html>
<head>
<title>first page</title>
</head>
<body>
<h1>This is heading 1<b></h1>
<h2>This is heading 2<b></h2>
<h3>This is heading 3<b></h3>
<h4>This is heading 4<b></h4>
<h5>This is heading 5<b></h5>
<h6>This is heading 6<b></h6>
</body>
</html>
here is the code