Computer Science, asked by ektasaini, 11 months ago

Write the code in Notepad to create an HTML document to display the webpage as
per the description:
My Webpage should be the title of the document.
Your name should be the Heading of any size of your choice.
Create the paragraph as follows:
I am one of the learners in City Montessori School. Presently I am studying in
Class VI and enjoy learning.
In the paragraph the text 'City Montessori School' should be bold and the text
'Class VI should be italicised.​

Answers

Answered by akshara200314
4

Answer:

<html>

<head>

<title>Myself </title>

</head>

<body>

<p> I am one of the learners in <b>City Montessori school</b>. Presently I am studying in <i>class VI</i> and enjoy learning.</p>

</body>

</html>

Similar questions