“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
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:-
Note:-
View the answer on web
Similar questions