跳转至主要内容

广州更懂信息科技有限公司

author
最后编辑于 2025年9月15日

其他的都不多说了,直接上步骤。

首先,你需要打开一个新建的文本文档(.txt),然后在其中输入以下代码:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>My Simple Web Page</title>
    <style>
        body {
            width: 100%;
            height: 200px;
            background-color: #ccc;
            font-family: Arial, sans-serif;
            color: #333;
            text-align: center;
        }
        .header {
            margin-top: 50px;
            font-size: 24px;
        }
        .content {
            border-top: 1px solid #ddd;
            padding: 20px 0;
        }
        .footer {
            position: fixed;
            bottom: 10px;
            width: 100%;
            text-align: center;
        }
    </style>
</head>
<body>

    <div class="header">
        <h1>这是一个简单的网页</h1>
    </div>

    <div class="content">
        <p>这里可以放置你的网页内容,如文章、图片和数据等。</p>
    </div>

    <div class="footer">
        &copy; 2023 My Simple Web Page
    </div>

</body>
</html>

接着,将这段代码保存为HTML文件(.html),你可以在任何支持HTML的网页浏览器中打开它,查看效果。

1️⃣ 编辑内容:在<div class="content">标签内编辑你的网页内容,例如添加图片、视频或表格等元素。
2️⃣ 修改样式:你可以通过修改CSS中的background-colortext-alignfont-family等属性来自定义网页的布局和设计。以下是一些你可以尝试的样式:

  • 改变背景颜色:将background-color: #ccc;改为你喜欢的颜色。
  • 更改字体大小:将.header { font-size: 24px; }中的字大小数值放大或缩小以适应你的需求。
  • 设置页脚位置:通过调整.footer { position: fixed; bottom: 10px; ...}中的数值,可以改变页脚位置。

3️⃣ 保存文件:编辑完成后,保存你的HTML文件,并分享给朋友或上传到网站供他人观看。

Previous Post

 

Next Post

 

评论已关闭。