This commit is contained in:
veypi 2024-05-23 16:11:36 +08:00
parent f64a97ecb0
commit 6273369c68

104
test.html
View File

@ -1,104 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Veypi's Personal Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #444;
}
nav a {
color: #fff;
padding: 14px 20px;
text-decoration: none;
text-align: center;
}
nav a:hover {
background-color: #555;
}
section {
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
border-bottom: 2px solid #333;
padding-bottom: 10px;
margin-bottom: 20px;
}
.footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
}
</style>
</head>
<body>
<header>
<h1>Veypi's Personal Page</h1>
</header>
<nav>
<a href="#resume">Resume</a>
<a href="#projects">Projects</a>
<a href="#blog">Blog</a>
</nav>
<section id="resume">
<div class="container">
<h2>Resume</h2>
<p>Here you can add your professional experience, education background, skills, and any other relevant
information.</p>
<!-- Add your resume content here -->
</div>
</section>
<section id="projects">
<div class="container">
<h2>Projects</h2>
<p>Here you can showcase your projects with descriptions, links, and images if available.</p>
<!-- Add your project content here -->
</div>
</section>
<section id="blog">
<div class="container">
<h2>Blog</h2>
<p>Here you can write and share your blog posts.</p>
<!-- Add your blog content here -->
</div>
</section>
<footer class="footer">
<p>&copy; 2024 Veypi. All rights reserved.</p>
</footer>
</body>
</html>