Skip to content

Commit

Permalink
added index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
reott committed Jun 19, 2024
1 parent 4b81c00 commit 5bd7130
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f7f7f7;
}
.navbar {
background-color: #333;
color: #fff;
padding: 1em;
text-align: center;
}
.content {
padding: 2em;
}
.intro {
display: flex;
align-items: center;
margin-bottom: 2em;
}
.intro img {
border-radius: 50%;
margin-right: 2em;
width: 150px;
height: 150px;
}
.project {
background-color: #fff;
border: 1px solid #ddd;
padding: 1em;
margin-bottom: 2em;
}
.project img {
max-width: 100%;
height: auto;
}
.project-header {
font-size: 1.5em;
margin-bottom: 0.5em;
}
</style>
</head>
<body>
<div class="navbar">
<h1>My Portfolio</h1>
</div>
<div class="content">
<div class="intro">
<img src="your-image-url.jpg" alt="Your Image">
<div>
<h2>About Me</h2>
<p>Hi, I'm [Your Name], a passionate developer with a knack for creating innovative solutions. Welcome to my portfolio!</p>
</div>
</div>
<div class="project">
<div class="project-header">Project One</div>
<img src="project-one-image.jpg" alt="Project One Image">
<p>Details about Project One. This project involved...</p>
</div>
<div class="project">
<div class="project-header">Project Two</div>
<img src="project-two-image.jpg" alt="Project Two Image">
<p>Details about Project Two. This project focused on...</p>
</div>
<div class="project">
<div class="project-header">Project Three</div>
<img src="project-three-image.jpg" alt="Project Three Image">
<p>Details about Project Three. The main goal of this project was...</p>
</div>
</div>
</body>
</html>

0 comments on commit 5bd7130

Please sign in to comment.