-
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
1 parent
d1aa0a6
commit b5d6715
Showing
1 changed file
with
9 additions
and
62 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 |
---|---|---|
|
@@ -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> | ||
|
||
|
@@ -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 --> | ||
|
@@ -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> | ||
© 2024 Your Name. All rights reserved. | ||
<p>© 2024 Your Name. All rights reserved.</p> | ||
</footer> | ||
|
||
</body> | ||
|