Computer Science, asked by freshudeze, 7 months ago

please answer how to put a web page background

Answers

Answered by akm26381
0

Answer:

Explanation:

By using HTML or by using CSS. So, I will be providing you with the code to both the cases

In HTML, you can use the background attribute to define the background.

In CSS, you can use the the background-image property that specifies an image to use as the background of an element.

<html>

<head>

<style type="text/css">                        /*Background in CSS*/

body {

 background-image: url("paper.gif");

 background-position: right top;

}

</style>

<body background="paper.gif">          

<H1> This is the code </H1>  

</body>

</html>

Answered by RAJPUTANALIONS
0

Answer:

if you have to put for one web page then you can put it through HTML5 and of you have to put it for no. of webpages then you can use php ..

Similar questions