以下是一个小型视频网站的模板,可以根据自己的需要进行修改:
```html
t
t
小型视频网站t
t
tt
欢迎来到我们的小型视频网站
tt
您可以在这里找到我们为您提供的各种视频资源。
tt
ttt
ttt
ttt
tt
t
```
```css
* {
tmargin: 0;
tpadding: 0;
tbox-sizing: border-box;
}
body {
tbackground-color: #f2f2f2;
tfont-family: Arial, sans-serif;
}
.container {
tmax-width: 640px;
tmargin: 0 auto;
tpadding: 20px;
tbackground-color: #fff;
tborder-radius: 5px;
}
h1 {
ttext-align: center;
tmargin-bottom: 30px;
}
p {
ttext-align: center;
tmargin-bottom: 30px;
}
video {
twidth: 100%;
theight: 100%;
tobject-fit: cover;
tmargin-bottom: 15px;
}
.video-container {
twidth: 640px;
theight: 480px;
tmargin: 0 auto;
tborder-radius: 5px;
tpadding: 20px;
}
video > video {
tmargin-bottom: 10px;
}
video .controls {
tmargin-top: 20px;
tdisplay: block;
tmargin-bottom: 20px;
}
```