html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<head>
<title>Background</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="text">background added...</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
body {
overflow:hidden ;
background-image: url(https://dl.dropboxusercontent.com/scl/fi/k85ztuxppeki0qi2pgb9q/creamy-gold-background-vector-973804.avif?rlkey=gas3m9cqzxjxe6rnxtudvse4e&dl=0);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
.text{
display:flex;
position:relative;
align-items:center;
justify-content:center;
color: blue;
font-size:30px;
margin-top:300px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run