add profile page

This commit is contained in:
Alessandro Ferro 2024-02-20 22:16:54 +01:00
parent 65ac272876
commit 1a233859ba
3 changed files with 107 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -0,0 +1,62 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f7f7f7;
}
.container {
max-width: 800px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header {
text-align: center;
margin-bottom: 20px;
}
h1 {
color: #333;
margin-bottom: 5px;
}
p {
color: #666;
}
section {
margin-bottom: 20px;
}
h2 {
color: #333;
margin-bottom: 10px;
}
.job h3, .education h3 {
color: #444;
margin-bottom: 5px;
}
ul {
list-style-type: disc;
margin-left: 20px;
}
footer {
text-align: center;
margin-top: 20px;
color: #666;
}
.profile-picture {
width: 150px; /* Adjust size as needed */
height: 150px;
border-radius: 50%; /* Make it circular */
margin-bottom: 10px;
}

View File

@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume</title>
<link rel="stylesheet" href="../css/profile.css">
</head>
<body>
<div class="container">
<header>
<img src="../content/profile-picture-example.jpg" alt="Profile Picture" class="profile-picture">
<h1>John Doe</h1>
<p>Web Developer</p>
</header>
<section>
<h2>About Me</h2>
<p>I am a passionate web developer with experience in HTML, CSS, and JavaScript. I enjoy creating responsive and user-friendly websites.</p>
</section>
<section>
<h2>Experience</h2>
<div class="job">
<h3>Web Developer</h3>
<p>Blink Corporation: 2020-Present</p>
<ul>
<li>Developed and maintained company website</li>
<li>Implemented new features using HTML, CSS, and JavaScript</li>
<li>Collaborated with designers to ensure UI/UX best practices</li>
</ul>
</div>
</section>
<section>
<h2>Education</h2>
<div class="education">
<h3>Bachelor of Science in Computer Science</h3>
<p>XYZ University: 2016-2020</p>
</div>
</section>
<footer>
<p>Email: john.doe@example.com | Phone: 123-456-7890</p>
</footer>
</div>
</body>
</html>