Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
snuweb committed May 29, 2024
1 parent 1143f13 commit 55b447d
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 5 deletions.
30 changes: 25 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Hello people </h1>
<header>
<h1>Welcome to My Portfolio</h1>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>I'm a MERN stack web developer...</p>
</section>
<section id="projects">
<h2>My Projects</h2>
<!-- Add project details here -->
</section>
<section id="contact">
<h2>Contact Me</h2>
<p>Email: [email protected]</p>
</section>
</main>
<footer>
<p>&copy; 2024 My Portfolio</p>
</footer>
</body>
</html>
</html>
40 changes: 40 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
styles.css
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f4f4f4;
}

header {
background: #333;
color: #fff;
padding: 1em 0;
text-align: center;
}

main {
padding: 2em;
}

section {
margin-bottom: 2em;
}

h1, h2 {
font-family: 'Roboto', sans-serif;
}

p {
line-height: 1.6;
}

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

0 comments on commit 55b447d

Please sign in to comment.