-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |