Computer Science, asked by sakshimalusare2003, 3 months ago

write html program for internal css with body color blue​

Answers

Answered by rekhakhandal469
0

\huge\mathfrak\green {Question-}

QUESTION?

write html program for internal css with body color blue

\huge\mathfrak\green {Answer-}

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 hooked20buisness
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