-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (103 loc) · 3 KB
/
index.html
File metadata and controls
103 lines (103 loc) · 3 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
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://kit.fontawesome.com/8dc89a3c11.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<body>
<div class="layout">
<div class="text-container">
<h1 class="title">8px</h1>
<div class="subtitle-wrapper">
<span class="firts-text">8px PlayGround에 오신 여러분</span>
<span class="second-text">환영합니다</span>
<span class="third-text">지옥에 오신걸</span>
<span class="forth-text">진심으로 환영합니다</span>
</div>
</div>
<article class="iconbox-layout">
<ul class="icon-container">
<li>
<a href="#">
<i class="far fa-thumbs-up"></i>
<p>최재영</p>
</a>
</li>
<li>
<a href="#">
<i class="far fa-thumbs-up"></i>
<p>김지수</p>
</a>
</li>
<li>
<a href="#">
<i class="far fa-thumbs-up"></i>
<p>김현길</p>
</a>
</li>
<li>
<a href="#">
<i class="far fa-thumbs-up"></i>
<p>조미진</p>
</a>
</li>
</ul>
<div class="space-container">
<span>빈 박스</span>
</div>
</article>
<table class="table-container">
<caption class="table-title">
8px member
</caption>
<colgroup>
<col class="name" />
<col class="part" />
</colgroup>
<thead class="table">
<tr class="table-category">
<th>이름</th>
<th>담당</th>
</tr>
</thead>
<tbody>
<tr>
<td>최재영</td>
<td>프론트엔드</td>
</tr>
<tr>
<td>김현길</td>
<td>프론트엔드</td>
</tr>
<tr>
<td>조미진</td>
<td>프론트엔드</td>
</tr>
<tr>
<td>김지수</td>
<td>프론트엔드</td>
</tr>
</tbody>
</table>
<figure class="img-container">
<img
src="https://images.unsplash.com/photo-1615963244664-5b845b2025ee?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1064&q=80"
alt="화이팅 넘치는 호랑이 이미지입니다."
class="img-item"
/>
<figcaption class="img-title-wrapper">
<span class="img-title">2🐯22년 8px 취뽀 할 수 있다!!!</span>
</figcaption>
</figure>
</div>
<script src="./script.js"></script>
</body>
</html>