Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMazin1 authored Mar 27, 2024
1 parent 3a00e30 commit d2ae2ce
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My GitHub Repository</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
background-color: #f3f4f6;
color: #333;
}

.container {
max-width: 800px;
margin: auto;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
color: #0366d6;
}

a {
color: #0366d6;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

.file-list {
list-style: none;
padding-left: 0;
}

.file-list li {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to My GitHub Repository</h1>
<p>This is a collection of my projects and files. Feel free to explore the files listed below:</p>
<ul class="file-list">
<li><a href="file_name_here.html">File Name Here</a></li>
<li><a href="another_file.html">Another File</a></li>
<li><a href="project_folder/">Project Folder</a></li>
<!-- Add more links to your files or folders as needed -->
</ul>
</div>
</body>
</html>

0 comments on commit d2ae2ce

Please sign in to comment.