Computer Science, asked by vermapreetshama, 26 days ago

“Existing features Offered By HTML”. Give it as heading H3, Align =Left, Color= Red,

Font= Comic Sans Ms.

Write a paragraph on the same with <p> tag, Align= Right, Font=Comic Sans MS, Color=

Blue and Size=4. !!please give me coding off this!!​

Answers

Answered by NewGeneEinstein
0

Lets do:-

<!DOCTYPE HTML>

<html>

<head>

<style>

.h3{text-align:center;color:red;font-style:ComicSansMs;}

.p{text-align:right;font-style:ComicSansMs;font-color:Blue;font-size:4px;}

</style>

</head>

<body>

<h3>Existing features offered by HTML"</h3>

<br>

<p>HTML stands for Hypertext Markup Protocol.It is used to develop websites.</p>

</body>

</html>

Output:-

&lt;!DOCTYPE HTML&gt;</p><p>&lt;html&gt;</p><p>&lt;head&gt;</p><p>&lt;style&gt;</p><p>.h3{text-align:center;color:red;font-style:ComicSansMs;}</p><p>.p{text-align:right;font-style:ComicSansMs;font-color:Blue;font-size:4px;}</p><p>&lt;/style&gt;</p><p>&lt;/head&gt;</p><p>&lt;body&gt;</p><p>&lt;h3&gt;Existing features offered by HTML"&lt;/h3&gt;</p><p>&lt;br&gt;</p><p>&lt;p&gt;HTML stands for Hypertext Markup Protocol.It is used to develop websites.&lt;/p&gt;</p><p>&lt;/body&gt;</p><p>&lt;/html&gt;

Note:-

View the answer on web

Similar questions