
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
코드
problems 이유를 알고 싶어요!!!

작성한 코드 및 에러 메세지
오류 발<!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>
html, body, h1, h2, h3, p, a, span {
}
.wrap {
width: 1050px;
margin: auto;
background-color: green;
}
.card {
width: 320px;
height: 340px;
background-color: pink;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 16px 10px;
border: 1px solid black;
}
.card-wrap {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
</style>
</head>
<body>
<div class="wrap">
<h1>오늘의 전시</h1>
<div class="card-wrap">
<div class="card">
<div class="card-image">이미지</div>
<span class="card-title">제목</span>
<span class="period">기간</span>
<span class="tags">설명</span>
</div>
<div class="url-form card">
<input type="text">
<button>등록하기</button>
</div>
</div>
</div>
</body>
</html>생 시, 작성한 코드 전체와 에러 메시지를 첨부해 주세요.
Tip 1) </> 아이콘을 눌러 코드박스를 만들어 보세요.
Tip 2) Ctrl+A(맥의 경우 Command+A) 단축키로 코드를 한 번에 선택할 수 있어요!
