写一段简单html代码
时间: 2023-10-10 20:11:23 浏览: 91
<!DOCTYPE html>
<html>
<head>
<title>My First HTML Page</title>
</head>
<body>
<h1>Welcome to my website!</h1>
<p>This is my first HTML page, and I'm excited to share it with you.</p>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<img src="image.jpg" alt="An image of something">
</body>
</html>
阅读全文