Skip to content

Commit

Permalink
"initday"
Browse files Browse the repository at this point in the history
  • Loading branch information
snuweb committed May 29, 2024
1 parent 55b447d commit 071d9ac
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 39 deletions.
72 changes: 58 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,73 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<title>Your Name | Developer</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to My Portfolio</h1>
<header class="header">
<h1 class="logo">
<a href="#">Your Name</a>
</h1>
<nav class="navigation">
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<main>
<section id="about">
<section class="hero" id="about">
<h2>About Me</h2>
<p>I'm a MERN stack web developer...</p>
<p>I am a passionate developer with X years of experience in building web applications and websites. I have a strong foundation in (mention core technologies like HTML, CSS, JavaScript) and a keen interest in (mention areas of interest like front-end frameworks, back-end development). I am always eager to learn new things and stay up-to-date with the latest technologies.</p>
<a href="#" class="btn">Download Resume</a>
</section>
<section id="projects">
<h2>My Projects</h2>
<!-- Add project details here -->

<section class="skills" id="skills">
<h2>Skills</h2>
<ul class="skills-list">
<li>
<i class="fa fa-code"></i> HTML & CSS
</li>
<li>
<i class="fa fa-code"></i> JavaScript
</li>
<li>
<i class="fa fa-database"></i> (Database technologies, e.g., MySQL, PostgreSQL)
</li>
<li>
<i class="fa fa-cubes"></i> (Front-end frameworks, e.g., React, Vue.js)
</li>
</ul>
</section>
<section id="contact">
<h2>Contact Me</h2>
<p>Email: [email protected]</p>

<section class="projects" id="projects">
<h2>Projects</h2>
<div class="project-card">
<h3>Project Title</h3>
<p>A brief description of your project and its key features.</p>
<a href="#" class="btn">View Project</a>
</div>
</section>

<section class="contact" id="contact">
<h2>Contact</h2>
<p>Feel free to reach out to me for any inquiries or project opportunities.</p>
<ul class="contact-info">
<li><i class="fa fa-envelope"></i> [email protected]</li>
<li><i class="fa fa-linkedin"></i> <a href="#">Your LinkedIn Profile</a></li>
<li><i class="fa fa-github"></i> <a href="#">Your Github Profile</a></li>
</ul>
</section>
</main>
<footer>
<p>&copy; 2024 My Portfolio</p>

<footer class="footer">
<p>&copy; 2024 Your Name</p>
</footer>
</body>

<script src="https://kit.fontawesome.com/your-fontawesome-kit-code.js" crossorigin="anonymous"></script>
</body>
</html>
47 changes: 22 additions & 25 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,40 +1,37 @@
styles.css
body {
font-family: Arial, sans-serif;
font-family: sans-serif;
margin: 0;
padding: 0;
background: #f4f4f4;
}

header {
background: #333;
color: #fff;
padding: 1em 0;
text-align: center;
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #f1f1f1;
}

main {
padding: 2em;
.logo {
font-size: 2em;
font-weight: bold;
}

section {
margin-bottom: 2em;
.logo a {
color: #333;
text-decoration: none;
}

h1, h2 {
font-family: 'Roboto', sans-serif;
.navigation {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}

p {
line-height: 1.6;
.navigation li {
margin-right: 20px;
}

footer {
background: #333;
color: #fff;
text-align: center;
padding: 1em 0;
position: fixed;
bottom: 0;
width: 100%;
}
.navigation a {
color: #33

0 comments on commit 071d9ac

Please sign in to comment.