Write HTML code to display a text "World is Beautiful" having font-size 35 using CSS
Answers
Answered by
8
Answer:
<html>
<head>
<style>
body{
font-size:35;
}
</style>
</head>
<body>
"World is Beautiful"
</body>
</html>
Answered by
4
Answer:
Explanation:
<doctype>
Similar questions