html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-image: url('your-background-image.jpg');
/* You can also set other properties like background color, size, position, etc. */
background-color: #f0f0f0; /* Fallback color */
background-size: cover; /* Cover the entire body */
background-position: center; /* Center the background */
/* You can add more background properties here */
}
</style>
</head>
<body>
<!-- Your HTML content goes here -->
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
body
{
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Exécuter