-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
79 lines (78 loc) · 1.57 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<style>
body {
font-family: sans-serif;
background-color: lightgray;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.header {
display: flex;
align-items: center;
margin-bottom: 20px;
}
img {
width: 100px;
height: 100px;
border-radius: 50%;
margin-right: 20px;
}
h1 {
font-size: 36px;
margin: 0;
}
.bio {
font-size: 18px;
text-align: center;
margin-bottom: 20px;
}
.repos {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.repo {
width: 30%;
background-color: white;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.repo h2 {
font-size: 24px;
margin: 0;
margin-bottom: 10px;
}
.repo p {
font-size: 14px;
color: gray;
margin: 0;
margin-bottom: 10px;
}
</style>
<div class="container">
<div class="header">
<img src="https://via.placeholder.com/100x100" alt="Profile picture">
<h1>Your Name</h1>
</div>
<div class="bio">
<p>I am a software developer with a passion for building amazing things. My goal is to create applications that are both functional and beautiful.</p>
</div>
<h2>My Repositories</h2>
<div class="repos">
<div class="repo">
<h2>Repository 1</h2>
<p>Description of repository 1</p>
</div>
<div class="repo">
<h2>Repository 2</h2>
<p>Description of repository 2</p>
</div>
<div class="repo">
<h2>Repository 3</h2>
<p>Description of repository 3</p>
</div>
</div>
</div>