John Doe's Homepage: Web Developer Portfolio & Contact
<!DOCTYPE html>
<html>
<head>
<title>My Homepage</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to My Homepage</h1>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#projects">My Projects</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>Hi, my name is John Doe and I am a web developer. I love creating beautiful and functional websites that help people achieve their goals. I have been working in this field for over 5 years and I am always learning new things.</p>
<p>When I am not working, you can find me hiking in the mountains, playing guitar, or reading a good book.</p>
</section>
<section id="projects">
<h2>My Projects</h2>
<ul>
<li>
<h3>Project 1</h3>
<p>This is a description of project 1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed nec eros at massa consequat lobortis.</p>
</li>
<li>
<h3>Project 2</h3>
<p>This is a description of project 2. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed nec eros at massa consequat lobortis.</p>
</li>
<li>
<h3>Project 3</h3>
<p>This is a description of project 3. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed nec eros at massa consequat lobortis.</p>
</li>
</ul>
</section>
<section id="contact">
<h2>Contact Me</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<label for="message">Message:</label>
<textarea id="message" name="message"></textarea>
<input type="submit" value="Submit">
</form>
</section>
</main>
<footer>
<p>Copyright © 2021 John Doe</p>
</footer>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lRpS 著作权归作者所有。请勿转载和采集!