Write a HTML code
to display your name in brown colors
Answers
Answered by
5
Here is the required HTML code:
<!DOCTYPE html>
<html>
<head>
<title> Displaying my name in brown color </title>
<style type= "text/css">
body {color: brown}
</style>
</head>
<body>
Ishita*
</body>
</html>
NOTE* ---> This was my name, you have to write your own name.
Similar questions