Skip to content

Commit

Permalink
added a landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
m-ehab2 committed Feb 1, 2024
1 parent aeadd16 commit 489a867
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Ignore node_modules directory
node_modules/
node_modules/
.gitignore
91 changes: 91 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>🚀 Full Stack MEARN Developer Labs</title>
<meta
name="description"
content="Explore the Full Stack MEARN Developer Labs repository, containing lab assignments and projects covering MongoDB, Express.js, Angular, React, and Node.js."
/>
<meta
name="keywords"
content="Full Stack, MEARN, Developer, Labs, MongoDB, Express.js, Angular, React, Node.js, ITI, repo"
/>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
color: #333;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}
header {
background-color: #007bff;
padding: 20px;
text-align: center;
color: #fff;
}
h1 {
margin: 0;
font-size: 36px;
font-weight: bold;
}
main {
text-align: center;
padding: 20px;
}
p {
font-size: 18px;
margin-bottom: 20px;
}
.button {
display: inline-block;
padding: 10px 20px;
font-size: 20px;
background-color: #28a745;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.button:hover {
background-color: #218838;
}
footer {
background-color: #343a40;
padding: 20px;
text-align: center;
color: #fff;
}
</style>
</head>
<body>
<header>
<h1>🚀 Welcome to the Full Stack MEARN Developer Labs 🚀</h1>
</header>
<main>
<section>
<p>
This repository contains all the lab assignments and projects
completed during my journey in the Information Technology
Institute (ITI) program. Explore the labs covering MongoDB,
Express.js, Angular, React, and Node.js.
</p>
<p>
This is for the intensive code camp batch dated to November 2023
</p>
<a href="https://github.com/m-ehab2/ITI" class="button"
>Explore Labs</a
>
<p>Don't forget to star the repository on GitHub! ⭐️</p>
</section>
</main>
<footer>
<p>&copy; ITI Ismailia Branch</p>
</footer>
</body>
</html>

0 comments on commit 489a867

Please sign in to comment.