Skip to content

Commit 079531c

Browse files
a lttle modified
1 parent 46164e7 commit 079531c

File tree

1 file changed

+99
-14
lines changed

1 file changed

+99
-14
lines changed

index.html

Lines changed: 99 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,106 @@
11
<!DOCTYPE html>
22
<html>
3+
34
<head>
4-
<!-- Hi curious person -->
5-
<title>
6-
Smartlinuxcoder's webpage</title>
7-
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
<meta name="keywords" content="Nothing, to, see, here">
9-
<meta name="description" content="My website, bro. Nothing to see here">
10-
<style>
11-
body {background-color:#ffffff;background-repeat:no-repeat;background-position:top left;background-attachment:fixed;}
12-
h1{font-family:Arial, sans-serif;color:#000000;background-color:#ffffff;}
13-
p {font-family:Georgia, serif;font-size:14px;font-style:normal;font-weight:normal;color:#000000;background-color:#ffffff;}
14-
</style>
5+
<title>GitHub Profile</title>
6+
<style>
7+
/* Add styles for the page */
8+
body {
9+
font-family: Arial, sans-serif;
10+
}
11+
12+
h1 {
13+
font-size: 36px;
14+
text-align: center;
15+
}
16+
17+
.container {
18+
display: flex;
19+
flex-wrap: wrap;
20+
justify-content: center;
21+
align-items: center;
22+
margin: 50px 0;
23+
}
24+
25+
.card {
26+
width: 300px;
27+
height: 400px;
28+
border: 1px solid #ccc;
29+
box-shadow: 2px 2px #ccc;
30+
margin: 20px;
31+
text-align: center;
32+
padding: 20px;
33+
}
34+
35+
.avatar {
36+
width: 150px;
37+
height: 150px;
38+
border-radius: 75px;
39+
margin: 0 auto 20px;
40+
}
41+
42+
.username {
43+
font-size: 24px;
44+
font-weight: bold;
45+
}
46+
47+
.bio {
48+
font-size: 16px;
49+
text-align: left;
50+
margin: 20px 0;
51+
}
52+
53+
.stats {
54+
display: flex;
55+
justify-content: space-between;
56+
margin: 20px 0;
57+
}
58+
59+
.stat {
60+
font-size: 18px;
61+
}
62+
63+
.repo {
64+
font-size: 18px;
65+
font-weight: bold;
66+
}
67+
</style>
1568
</head>
69+
1670
<body>
17-
<h1>Hi, this is my webpage</h1>
18-
<p>Nothing to see here</p>
19-
<p>website very WIP</p>
71+
<h1>GitHub Profile</h1>
72+
<div class="container">
73+
<div class="card">
74+
<!-- Add the GitHub profile picture -->
75+
<img class="avatar" src="https://avatars0.githubusercontent.com/u/123456" alt="Avatar">
76+
<!-- Add the GitHub username -->
77+
<div class="username">username</div>
78+
<!-- Add a short bio about the user -->
79+
<div class="bio">A short bio about the user goes here.</div>
80+
<div class="stats">
81+
<!-- Add the number of followers -->
82+
<div class="stat">
83+
<span>Followers</span>
84+
<br>
85+
123
86+
</div>
87+
<!-- Add the number of following -->
88+
<div class="stat">
89+
<span>Following</span>
90+
<br>
91+
456
92+
</div>
93+
<!-- Add the number of repositories -->
94+
<div class="stat">
95+
<span>Repositories</span>
96+
<br>
97+
789
98+
</div>
99+
</div>
100+
<!-- Add a link to the user's repositories -->
101+
<a class="repo" href="https://github.com/Smartlinuxcoder">View Repositories</a>
102+
</div>
103+
</div>
20104
</body>
105+
21106
</html>

0 commit comments

Comments
 (0)