以下是一个简单的欢迎界面网站模板,您可以根据自己的需要进行修改和定制。
```html
t
欢迎界面网站模板t
t
tt
欢迎来到我们的网站
tt
感谢您使用我们的网站。如果您有任何问题或需要帮助,请随时联系我们。
tt
t
```
CSS:
```css
body {
tbackground-color: #f2f2f2;
tfont-family: Arial, sans-serif;
}
.container {
tmax-width: 480px;
tmargin: 0 auto;
tpadding: 20px;
tbackground-color: #fff;
tborder-radius: 5px;
tbox-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
h1 {
ttext-align: center;
tfont-size: 24px;
tmargin-bottom: 20px;
}
p {
tfont-size: 18px;
tline-height: 1.6;
tmargin-bottom: 30px;
}
form {
tdisplay: flex;
tflex-direction: column;
}
label {
tmargin-bottom: 5px;
}
input[type="text"],
input[type="email"],
textarea {
twidth: 100%;
tpadding: 10px;
tmargin-bottom: 20px;
tborder-radius: 5px;
tborder: 1px solid #ccc;
}
input[type="submit"] {
tbackground-color: #4CAF50;
tcolor: #fff;
tborder: none;
tpadding: 10px 20px;
tborder-radius: 5px;
tcursor: pointer;
}
```
这个模板包括一个欢迎页面,其中包含一个标题、一个段落和一个表单。您可以根据需要添加其他元素,如图片、图标、视频等。您可以根据自己的需要进行修改和定制,以适应您的需求。