html网页代码实例

当涉及HTML代码时,可以创建一个简单的网页作为示例。

html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>我的网页</title> <style> body { font-family: Arial, sans-serif; margin: 20px; } header { background-color: #333; color: #fff; padding: 10px; text-align: center; } section { margin: 20px 0; } footer { background-color: #333; color: #fff; padding: 10px; text-align: center; position: fixed; bottom: 0; width: 100%; } </style> </head> <body> <header> <h1>欢迎来到我的网页</h1> </header> <section> <h2>内容部分</h2> <p>这是一个简单的HTML网页示例。</p> <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> </ul> </section> <footer> <p>版权所有 &copy; 2023</p> </footer> </body> </html>

这个示例包含一个简单的网页布局,其中有一个标题、内容部分和页脚。还包括了一些基本的CSS样式,以使页面看起来更美观。你可以根据需要修改这个模板,并添加更多的HTML元素和CSS样式。

html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>我的网页</title> <style> body { font-family: Arial, sans-serif; margin: 20px; } header { background-color: #333; color: #fff; padding: 10px; text-align: center; } section { margin: 20px 0; } img { max-width: 100%; height: auto; } footer { background-color: #333; color: #fff; padding: 10px; text-align: center; position: fixed; bottom: 0; width: 100%; } </style> </head> <body> <header> <h1>欢迎来到我的网页</h1> </header> <section> <h2>内容部分</h2> <p>这是一个包含图像、链接、表单和JavaScript脚本的扩展HTML网页示例。</p> <img src="example-image.jpg" alt="示例图像"> <p>了解更多信息,请访问 <a href="https://www.example.com">示例网站</a></p> <form> <label for="name">姓名:</label> <input type="text" id="name" name="name" required> <label for="email">邮箱:</label> <input type="email" id="email" name="email" required> <input type="submit" value="提交"> </form> <script> function showMessage() { alert('欢迎访问我的网页!'); } </script> <button onclick="showMessage()">点击显示欢迎消息</button> </section> <footer> <p>版权所有 &copy; 2023</p> </footer> </body> </html>

这个示例中添加了一个图像,一个外部链接,一个简单的表单,以及一个简单的JavaScript脚本来显示欢迎消息。你可以根据需要进一步扩展和自定义这个示例。

标签