write html program for internal css with body color blue
Answers
Answered by
0
QUESTION?
write html program for internal css with body color blue
ANSWER.
The internal style sheet is used to add a unique style for a single document. It is defined in <head> section of the HTML page inside the <style> tag.
Answered by
0
<!DOCTYPE html>
<html>
<head>
<title>Internal CSS Example</title>
<style>
body {
background-color: blue;
}
</style>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is an example of an HTML program with internal CSS.</p>
</body>
</html>
Hope it Helped Please mark brainiest.
Similar questions