write an html code to display the text i am in 10th standard in blue colour with heading level 4
Answers
Answered by
0
Answer:
<!doctype html>
<html>
<head>
<style>
h4{
color:blue;
}
<\style>
<\head>
<body>
<h4>I am in 10th standard<\h4>
<\body>
<\html>
Similar questions