IDNStudy.com, kung saan ang iyong mga tanong ay natutugunan ng mga maaasahang sagot. Makakuha ng hakbang-hakbang na mga gabay para sa lahat ng iyong teknikal na tanong mula sa mga miyembro ng aming komunidad.

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