0% found this document useful (0 votes)
15 views3 pages

Build A Personal Portfolio Webpage

The document outlines a personal portfolio webpage featuring a navigation bar, welcome section, projects section, and contact information. It includes HTML structure and CSS styles for layout and design, emphasizing responsiveness and user experience. The portfolio showcases the developer's projects and provides links to their GitHub profile and contact details.

Uploaded by

mayank.bt17
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views3 pages

Build A Personal Portfolio Webpage

The document outlines a personal portfolio webpage featuring a navigation bar, welcome section, projects section, and contact information. It includes HTML structure and CSS styles for layout and design, emphasizing responsiveness and user experience. The portfolio showcases the developer's projects and provides links to their GitHub profile and contact details.

Uploaded by

mayank.bt17
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

** start of undefined **

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Personal Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>

<!-- Navbar -->


<nav id="navbar">
<ul>
<li><a href="#welcome-section">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
<li><a id="profile-link" href="https://github.com/your-github"
target="_blank">GitHub</a></li>
</ul>
</nav>

<!-- Welcome Section -->


<section id="welcome-section">
<h1>Welcome to My Portfolio</h1>
<p>I'm a passionate developer who loves building great experiences.</p>
</section>

<!-- Projects Section -->


<section id="projects">
<h2>My Projects</h2>
<div class="project-container">
<div class="project-tile">
<h3>Project 1</h3>
<p>A great project that does something amazing.</p>
<a href="https://your-project-link.com" target="_blank">View
Project</a>
</div>
<div class="project-tile">
<h3>Project 2</h3>
<p>Another great project with unique features.</p>
<a href="https://your-project-link.com" target="_blank">View
Project</a>
</div>
</div>
</section>

<!-- Contact Section -->


<section id="contact">
<h2>Contact Me</h2>
<p>Email: [email protected]</p>
<p>Phone: +91-XXXXXXXXXX</p>
</section>

</body>
</html>
** end of undefined **

** start of undefined **

/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #f4f4f4;
color: #333;
}

/* Navbar */
#navbar {
position: fixed;
top: 0;
width: 100%;
background: #0073e6;
padding: 15px;
z-index: 1000;
}

#navbar ul {
list-style: none;
display: flex;
justify-content: center;
padding: 0;
}

#navbar li {
margin: 0 15px;
}

#navbar a {
color: white;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}

#navbar a:hover {
color: #ffcc00;
}

/* Welcome Section */
#welcome-section {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: linear-gradient(to right, #0073e6, #00c6ff);
color: white;
text-align: center;
}

/* Projects Section */
#projects {
padding: 50px;
text-align: center;
}

.project-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}

.project-tile {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
max-width: 300px;
}

.project-tile a {
display: block;
margin-top: 10px;
text-decoration: none;
color: #0073e6;
font-weight: bold;
}

/* Contact Section */
#contact {
background: #222;
color: white;
text-align: center;
padding: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
#navbar ul {
flex-direction: column;
text-align: center;
}

.project-container {
flex-direction: column;
align-items: center;
}
}

** end of undefined **

You might also like