-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
93 lines (88 loc) · 2.75 KB
/
team.html
File metadata and controls
93 lines (88 loc) · 2.75 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
89
90
91
92
93
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Middle_Homework_team</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Team_웹프로그루밍</h1>
</header>
<main>
<section class="card-section team-card-section">
<div class="card team-member">
<div class="image-container">
<a href="https://github.com/Interludeal"
><img
src="img/Team_profile.jpg"
alt="정재성 사진"
class="profile-img"
/></a>
<p class="github-caption">클릭하여 깃허브 이동</p>
</div>
<div class="profile-details">
<h2>정 재 성</h2>
</div>
</div>
<div class="card team-member">
<div class="image-container">
<a href="https://github.com/oesp91"
><img
src="img/Team_oesp91.jpg"
alt="정윤서 사진"
class="profile-img"
/></a>
<p class="github-caption">클릭하여 깃허브 이동</p>
</div>
<div class="profile-details">
<h2>정 윤 서</h2>
</div>
</div>
<div class="card team-member">
<div class="image-container">
<a href="https://github.com/seongmin-woo"
><img
src="img/Team_mabbak5.jpg"
alt="우성민 사진"
class="profile-img"
/></a>
<p class="github-caption">클릭하여 깃허브 이동</p>
</div>
<div class="profile-details">
<h2>우 성 민</h2>
</div>
</div>
<div class="card team-member">
<div class="image-container">
<a href="https://github.com/J4EH00N"
><img
src="img/Team_J4EH00N.jpg"
alt="심재훈 사진"
class="profile-img"
/></a>
<p class="github-caption">클릭 시 깃허브로 이동</p>
</div>
<div class="profile-details">
<h2>심 재 훈</h2>
</div>
</div>
</section>
<section class="nav-links">
<div class="nav-buttons">
<div class="nav-item">
<a href="index.html"
><img src="img/main.png" alt="main으로 돌아가기"
/></a>
<div class="nav-title">main으로 돌아가기</div>
<div class="nav-caption">클릭하여 이동</div>
</div>
</div>
</section>
</main>
<footer>
<p>JJS's Portfolio</p>
</footer>
</body>
</html>