-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (85 loc) · 2.06 KB
/
index.html
File metadata and controls
85 lines (85 loc) · 2.06 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
<!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">
<title>코딩네컷</title>
<style>
/* 이서윤체 폰트 적용을 위한 코드 */
@font-face {
font-family: "LeeSeoyun";
src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2202-2@1.0/LeeSeoyun.woff")
format("woff");
font-weight: normal;
font-style: normal;
}
body{
font-family: "LeeSeoyun";
margin: 0;
display: flex;
justify-content: center;
background-image: url(./background.png);
}
.container{
width: 390px;
background-color: #ff9d73;
height: 100%;
}
.photos{
margin-top: 30px;
}
.photo-frame{
background-color: white;
margin: 15px 20px;
height: 200px;
background-size: cover;
}
.footer{
display: flex;
flex-direction: column;
align-items: center;
}
.f-title{
color: white;
font-size: 25px;
font-weight: 900;
}
.f-date{
color: white;
font-size: 15px;
font-weight: 500;
}
#image1{
background-image: url(./img1.png);
}
#image2{
background-image: url(./img2.png);
}
#image3{
background-image: url(./img3.png);
}
#image4{
background-image: url(./img4.png);
}
</style>
</head>
<body>
<div class="container">
<div class="photos">
<div id="image1" class="photo-frame">
</div>
<div id="image2" class="photo-frame">
</div>
<div id="image3" class="photo-frame">
</div>
<div id="image4" class="photo-frame">
</div>
</div>
<div class="footer">
<p class="f-title">happy day</p>
<p class="f-date">2023.2.13</p>
</div>
</div>
</body>
</html>