mirror of
https://github.com/xfarrow/blink
synced 2025-06-27 09:03:02 +02:00
update front-end
This commit is contained in:
45
frontend/vanilla/html/userprofile.html
Normal file
45
frontend/vanilla/html/userprofile.html
Normal 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>
|
||||
|
Reference in New Issue
Block a user