Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add files via upload #280

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 additions & 0 deletions Olofindayo Israel Portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<section id="home" class="home-section">
<h1>Welcome to My Portfolio</h1>
<p>Hello! I'm Olofindayo Oladimeji Israel, a web developer.</p>
<button><a href="#projects">See My Work</a></button>
</section>

<section id="about" class="about-section">
<h2>About Me</h2>
<p>I am a passionate web developer with a love for creating functional and beautiful websites. I have experience in HTML, CSS, JavaScript, and more!</p>
</section>

<section id="projects" class="projects-section">
<h2>My Projects</h2>
<div class="project-gallery">
<div class="project-card">
<h3>Project 1</h3>
<p>Short description of the project.</p>
</div>
<div class="project-card">
<h3>Project 2</h3>
<p>Short description of the project.</p>
</div>
<div class="project-card">
<h3>Project 3</h3>
<p>Short description of the project.</p>
</div>
</div>
</section>

<section id="contact" class="contact-section">
<h2>Contact Me</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>

<label for="email">Email:</label>
<input type="email" id="email" name="email" required>

<label for="message">Message:</label>

<textarea id=
"message" name=
"message" required></textarea>

<button type="submit">Send</button>
</form>
</section>

<footer>
<p>&copy; 2025 Olofindayo Oladimeji Israel</p>
</footer>
</body>
</html>