-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage01_03.html
106 lines (105 loc) · 2.78 KB
/
image01_03.html
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
104
105
106
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>이미지 유형 01</title>
<style>
/* Fonts */
@font-face {
font-family: "NEXON Lv1 Gothic OTF";
src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/[email protected]/NEXON Lv1 Gothic OTF.woff")
format("woff");
font-weight: normal;
font-style: normal;
}
.nexon {
font-family: "NEXON Lv1 Gothic OTF";
}
/*Reset*/
* {
margin: 0;
padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: normal;
}
/* common */
.container {
width: 1160px;
padding: 0 20px;
margin: 0 auto;
display: inline-block;
}
.section {
padding: 120px 0;
}
/* >란 의미는 바로 밑에 있다는 의미이다! */
.section > h2 {
font-size: 50px;
margin-bottom: 20px;
text-align: center;
}
.section > p {
font-style: 22px;
font-weight: 300;
margin-bottom: 70px;
text-align: center;
}
/* imageType */
#imageType {
}
.image__wrap {
}
.image__inner {
display: flex;
justify-content: space-between;
}
.image {
width: 49%;
height: 370px;
}
.image.img1 {
background: url(img/img_bg01.png) no-repeat center center / cover;
}
.image.img2 {
background: url(img/img_bg02.png) no-repeat center center / cover;
}
.image__title {
}
.image__desc {
}
.image__btn {
}
</style>
</head>
<body>
<section id="imageType" class="image__wrap nexon section">
<h2>포트폴리오가 실력이다.</h2>
<p>이미지 유형입니다. 마우스 오버시 자세한 정보가 나오는 구조입니다.</p>
<div class="image__inner container">
<article class="image img1">
<h3 class="image__title">강아지계의 연예인</h3>
<p class="image__desc">
최근 우리 감쟈가 보고 싶어요. 우리 감쟈가 뭐하고 사는 지 너무
궁금하네요. 하하.....
</p>
<a href="/" class="image__btn">자세히보기</a>
</article>
<article class="image img2">
<h3 class="image__title">강아지계의 연예인</h3>
<p class="image__desc">
최근 우리 감쟈가 보고 싶어요. 우리 감쟈가 뭐하고 사는 지 너무
궁금하네요. 하하.....
</p>
<a href="/" class="image__btn">자세히보기</a>
</article>
</div>
</section>
</body>
</html>