Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
FocuseObie authored Sep 26, 2024
1 parent d1aa0a6 commit b5d6715
Showing 1 changed file with 9 additions and 62 deletions.
71 changes: 9 additions & 62 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,61 +3,6 @@
<head>
<meta charset="UTF-8">
<title>Your Name - Professional Portfolio</title>
<style>
/* Basic styling for layout and aesthetics */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #34495e;
color: white;
padding: 60px 0;
text-align: center;
}
nav {
background-color: #2c3e50;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: #ecf0f1;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
nav a:hover {
background-color: #1abc9c;
color: white;
}
section {
padding: 40px 20px;
}
section:nth-child(even) {
background-color: #ecf0f1;
}
h2 {
color: #2c3e50;
}
footer {
background-color: #34495e;
color: white;
text-align: center;
padding: 20px 0;
position: relative;
bottom: 0;
width: 100%;
}
/* Responsive design for mobile devices */
@media screen and (max-width: 600px) {
nav a {
float: none;
width: 100%;
}
}
</style>
</head>
<body>

Expand All @@ -69,10 +14,12 @@ <h1>Your Name</h1>

<!-- Navigation Menu -->
<nav>
<a href="#about">About</a>
<a href="#experience">Experience</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>

<!-- About Section -->
Expand Down Expand Up @@ -117,13 +64,13 @@ <h3>Another Project</h3>
<section id="contact">
<h2>Contact</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/yourprofile" target="_blank">Your LinkedIn Profile</a></p>
<p>GitHub: <a href="https://github.com/yourusername" target="_blank">github.com/yourusername</a></p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/yourprofile">Your LinkedIn Profile</a></p>
<p>GitHub: <a href="https://github.com/yourusername">github.com/yourusername</a></p>
</section>

<!-- Footer -->
<footer>
&copy; 2024 Your Name. All rights reserved.
<p>&copy; 2024 Your Name. All rights reserved.</p>
</footer>

</body>
Expand Down

0 comments on commit b5d6715

Please sign in to comment.