用html画做一个表白页面
时间: 2023-12-23 19:02:23 浏览: 81
html表白用的免费源代码,html5自定义文字生成表白页面
好的,以下是一个简单的表白页面的HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>表白页面</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<h1>我喜欢你</h1>
<p>一直以来,我一直想对你说,我喜欢你。</p>
<p>你让我感到快乐,你让我感到幸福。</p>
<p>我希望你也能对我有同样的感觉。</p>
</header>
<main>
<h2>我为你准备了一份礼物</h2>
<p>请点击下面的按钮领取。</p>
<a href="https://example.com/gift" target="_blank"><button>领取礼物</button></a>
</main>
<footer>
<p>谢谢你花时间看我的表白页面。</p>
<p>如果你也喜欢我,请联系我。</p>
<p>我的联系方式是:xxx@xxx.com。</p>
</footer>
</body>
</html>
```
你可以将其中的文字、链接和按钮替换成你自己想要的内容,来制作一个属于自己的表白页面。
阅读全文