Skip to content

Commit

Permalink
feat(apply): apply test할 때 하는 임시 페이지를 생성한다(#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
loopy-lim authored Sep 1, 2024
2 parents ad10463 + f4022c1 commit 2d048e9
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions service-apply/public/during_anotation.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="kr">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>전남대학교 주차권 신청</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}

div {
text-align: center;
}

h1 {
font-size: 2rem;
}

h2 {
font-size: 1.5rem;
}

a {
text-decoration: underline;
text-underline-offset: 0.2rem;
color: #888;
}

a:hover {
color: #333;
}
</style>
</head>

<body>
<div>
<h1>주차권 신청 안내</h1>
<h2>주차권은 9월 5일 20시에 신청됩니다.</h2>
<h3 style="padding-top: 2rem;">Contect Us</h3>
<div style="display: flex; gap: 1rem; justify-content: center;">
<a href="https://www.instagram.com/cnu_heyday_/">
공식 인스타그램 (@cnu_heyday_)
</a>
<a href="https://www.cnuheyday.com">
총학생회 홈페이지
</a>
</div>
</div>
</body>

</html>

0 comments on commit 2d048e9

Please sign in to comment.