Write a code to display your name, school ,class and roll number in bold ,Italic and underline.
Answers
Answered by
68
The HTML code for writing in
bold “<b> TEXT </b>”
italics ‘<i> TEXT </i>’
underline ‘<u> TEXT </u>.’
In the above coding, the texts generally include what we want to write.
As per the question, it would contain, name, school, class and roll number.
Answered by
44
As per your suggestion I have written a code in Hyper Text Makeup Language to show a Name, school, class and roll number in bold, italic and underlined character.
<html>
<body>
‘<b> Name </b>’
'<i> School Name </i> '
'<u> class </u> '
'<b> roll number </b> '
</body>
</html>
Here the characteristics <b> refers to the bold text
<i> refer to the italic text
<u> refer to the underlined text.
Similar questions