生成一个简单网页的index.html文件代码
时间: 2023-12-30 18:04:50 浏览: 65
一个简单的HTML网页代码
你可以使用以下代码生成一个简单的 index.html 文件:
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Welcome to my website</h1>
<p>This is a simple website created using HTML.</p>
</body>
</html>
阅读全文