html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>background-image</title>
<style>
body {
background-image: url("https://i.ibb.co/TWgCVx7/20220622-211922.jpg");
/* RU: Путь к фоновому изображению
ENG: The way to background-image
*/
background-color: #c7b39b;
/* RU: Цвет фона
ENG: Background color
*/
text-color: white;
}
</style>
</head>
<body>
<p><h3>RU: Здесь размещайте свой текст...</h3></p>
<p><h3>ENG: Enter your text here...</h3></p>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run