给我一串简单网页页面的代码
时间: 2023-06-26 12:03:41 浏览: 111
<!DOCTYPE html>
<html>
<head>
<title>My Simple Webpage</title>
</head>
<body>
<header>
<h1>Welcome to my webpage</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<article>
<h2>About Me</h2>
<p>Hi, I am John Smith. I am a web developer and I love creating beautiful websites.</p>
</article>
<article>
<h2>Contact Me</h2>
<p>You can reach me at johnsmith@example.com or follow me on Twitter @johnsmith.</p>
</article>
</main>
<footer>
<p>Copyright © 2021 John Smith</p>
</footer>
</body>
</html>
阅读全文