我刚刚给你的html帮我加上一张背景图片再把写好的html代码发给我
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<style>
body {
background-image: url("background.jpg");
background-size: cover;
background-position: center;
}
h1 {
color: white;
text-align: center;
}
</style>
</head>
<body>
<h1>Welcome to my website!</h1>
<p>This is some sample text.</p>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/bruN 著作权归作者所有。请勿转载和采集!