CBSE BOARD X, asked by jai194, 1 year ago

Write a code to display your name, school ,class and roll number in bold ,Italic and underline.

Answers

Answered by Sidyandex
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 topanswers
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