-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (78 loc) · 2.44 KB
/
index.html
File metadata and controls
88 lines (78 loc) · 2.44 KB
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
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>agree team</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #FFF;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
color: #333333;
}
p {
color: #666666;
}
.github-button {
display: inline-block;
border-radius: 50%;
overflow: hidden;
width: 40px;
height: 40px;
}
.github-button img {
width: 100%;
}
img.profile {
max-width: 100px;
border-radius: 50%;
margin: 20px 40px;
}
.members {
display: flex;
justify-content: center;
}
.member {
flex: 1;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<img src="https://avatars.githubusercontent.com/u/140408265?s=200&v=4" alt="agree 이미지" class="profile">
<h1>Team AGREE</h1>
<a href=https://github.com/TeamAgree class="github-button">
<img src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" alt="GitHub Logo">
</a>
<div class="members">
<div class="member">
<img src="https://avatars.githubusercontent.com/u/82303691?v=4" alt="김학성 이미지" class="profile">
<h1>김학성</h1>
<a href="https://github.com/haksung59" class="github-button">
<img src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" alt="GitHub Logo">
</a>
</div>
<div class="member">
<img src="https://avatars.githubusercontent.com/u/82303701?v=4" alt="안찬익 이미지" class="profile">
<h1>안찬익</h1>
<a href="https://github.com/ANCHANIK" class="github-button">
<img src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" alt="GitHub Logo">
</a>
</div>
</div>
</div>
</body>
</html>