diff --git a/static-html-directory/index.html b/static-html-directory/index.html
index 0171122..4bf285b 100644
--- a/static-html-directory/index.html
+++ b/static-html-directory/index.html
@@ -6,8 +6,22 @@
-
Latest Commit
-
+
+

+
GitHub Profile
+
+
Name: Your Name
+
Username: yourusername
+
Location: City, Country
+
Followers: 1000
+
Following: 500
+
+
Visit Profile
+
+
diff --git a/static-html-directory/styles.css b/static-html-directory/styles.css
index c27aa48..a536bff 100644
--- a/static-html-directory/styles.css
+++ b/static-html-directory/styles.css
@@ -1,27 +1,35 @@
-body {
- font-family: Arial, sans-serif;
- background-color: #f3f3f3;
- margin: 0;
- padding: 0;
+.profile {
+ display: flex;
+ align-items: center;
+ margin-bottom: 40px;
}
- .container {
- max-width: 800px;
- margin: 0 auto;
- padding: 20px;
- background-color: #fff;
+ .avatar {
+ width: 100px;
+ height: 100px;
+ border-radius: 50%;
+ margin-right: 20px;
+ }
+
+ .profile-details {
+ margin-top: 10px;
+ }
+
+ .profile-link {
+ display: inline-block;
+ padding: 10px 20px;
+ background-color: #007bff;
+ color: #fff;
+ text-decoration: none;
border-radius: 5px;
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
- }
-
- h1 {
- text-align: center;
- }
-
- #commit-info {
margin-top: 20px;
- padding: 10px;
- background-color: #f9f9f9;
- border-radius: 5px;
+ }
+
+ .commit {
+ margin-bottom: 40px;
+ }
+
+ .commit h2 {
+ margin-bottom: 10px;
}
\ No newline at end of file