<!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">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
<title>결혼 청첩장</title>
<style>
* {
font-family: 'IBM Plex Sans KR', sans-serif;
}
body, h1, h2, h3, p, a {
font-size: 16px;
margin: 0px;
padding: 0px;
text-decoration: none;
font-weight: normal;
}
.wrap {
width: 350px;
margin: auto;
}
.wrap > h1 {
background-color: pink;
color: white;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
}
.pic {
color: pink;
letter-spacing: 3px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 30px auto;
}
.pic > img {
border: 2px solid pink;
width: 250px;
margin: 10px;
}
.name {
color: pink;
font-size: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
margin-left: 100px;
margin-right: 100px;
margin-bottom: 10px;
border-top: 2px solid pink;
border-bottom: 2px solid pink;
}
.main {
background-color: pink;
color: white;
margin-top: 10px;
margin-bottom: 10px;
padding: 20px;
}
.title {
font-size: 20px;
text-align: center;
}
.msg{
font-size: 14px;
margin-top: 30px;
margin-bottom: 30px;
line-height: 2;
}
.date {
font-size: 14px;
text-align: center;
}
.location {
font-size: 14px;
text-align: center;
}
.bottom{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.bottom > input{
width: 250px;
margin-top: 10px;
margin-bottom: 10px;
}
.bottom > textarea{
width: 250px;
margin-bottom: 10px;
}
.bottom > button {
color:white;
background-color: pink;
width: 150px;
height: 40px;
border: none;
border-radius: 8px;
margin-bottom: 10px;
}
.celebration {
color: pink;
}
</style>
</head>
<body>
<div class="wrap">
<h1>영희와 철수의 첫 시작을 축하해주세요</h1>
<div class="pic">
<h2>Save The Date</h2>
<img src="image.png"></img>
<span>12,.31 SUNDAY.PM.12:30</span>
</div>
<div class="name">
김영희 & 이철수
</div>
<div class="main">
<p class="title" >INVITATION</p>
<p class="msg">
서로 다른 두 사람이 만나 <br/>
사랑으로 하나 되는 자리에 <br/>
소중한 여러분들을 초대합니다. <br/>
기쁠 때나, 슬플 때나 <br/>
서로를 사랑으로 품으며 <br/>
행복의 계단을 쌓아가겠습니다. <br/>
저희의 첫 시작을 함께 해주신다면 <br/>
감사한 마음 깊이 간직하며 잘 살겠습니다.
</p>
<p class="date">
2023.12.31.SUN.PM.12:30
</p>
<p class="location">
스파르타웨딩 르탄홀
</p>
</div>
<div class="bottom">
<p class="celebration">축하메시지를 남겨주세요</p>
<input type="text" placeholder="이름">
<textarea placeholder="메시지를 남겨주세요."></textarea>
<button>메시지 남기기</button>
</div>
</div>
</body>
</html>
아..
이번 주는 잘하면 못 할뻔..
근데 확실히 마진/패딩 개념이 잘 안 잡히니까..그냥 마구잡이로 하게 됨