Sumali sa IDNStudy.com at makuha ang mga sagot ng eksperto. Ang aming komunidad ay handang magbigay ng malalim at praktikal na mga solusyon sa lahat ng iyong mga katanungan.

create an simple html page that consists of set the background color of the document (body)to any color you want and the front of the text to arial. Use different headings​

Sagot :

Answer:

<!DOCTYPE html>

<html>

<head>

<style>

body {

background-color: cyan;

font-family: Arial;

}

</style>

</head>

<body>

<p>Hi Mom!</p>

</body>

</html>

Explanation:

Change the "Hi Mom!" to any text you want on your site

Change the "cyan" to any color you want