欢迎来到我的网站 - 进入主页
<!DOCTYPE html>
<html>
<head>
<title>欢迎来到我的网站 - 进入主页</title>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='stylesheet' type='text/css' href='style.css'>
</head>
<body>
<div class='container'>
<h1>欢迎来到我的网站</h1>
<p>请点击下面的按钮进入主页</p>
<a href='main.html' class='btn'>进入主页</a>
</div>
</body>
</html>
<style>
body {
background-color: #f5f5f5;
font-family: Arial, sans-serif;
}
.container {
margin: 50px auto;
text-align: center;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
color: #333;
}
p {
font-size: 24px;
margin-bottom: 30px;
color: #666;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
font-size: 20px;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s ease-in-out;
}
.btn:hover {
background-color: #0062cc;
}
</style>
原文地址: https://www.cveoy.top/t/topic/lSm0 著作权归作者所有。请勿转载和采集!