what did these tags mean: <P>, <B>
Answers
Answered by
0
hey mate here is your answer.......
<P> tag mean to create a paragraph in html.
<B> tag means other makes the text bold.
hope this helps.............
<P> tag mean to create a paragraph in html.
<B> tag means other makes the text bold.
hope this helps.............
Answered by
3
Hey there!
- Paragraph Element
The Paragraph element is used to make paragraph. This element is used to insert a line break with extra spaces in the beginning. It can also be aligned LEFT, RIGHT, CENTER by using ALIGN attribute in the PARAGRAPH element. The ending tag of the PARAGRAPH is optional.
Syntax - < P ALIGN ="ALIGNMENT TYPE">
- BOLD Style Tags
BOLD <B> This element is used to display the text in the bold type face.
Example :
<HTML>
<HEAD>
<TITLE>
This is bold face example.
</TITLE>
</HEAD>
<BODY>
<B> This is Bold Written Text </B>
<BR> This is the simple text.
</BODY>
</HTML>
Similar questions