-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecruitment.html
119 lines (112 loc) · 3.53 KB
/
recruitment.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
107
108
109
110
111
112
113
114
115
116
117
118
119
<!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 rel="stylesheet" href="./styles/shared.css">
<link rel="stylesheet" href="./styles/subpages.css">
<link rel="stylesheet" href="./styles/recruitment.css">
<!-- 폰트 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Gamja+Flower&family=Gothic+A1:wght@400;600;900&family=Paytone+One&family=Quicksand:wght@300;400&display=swap"
rel="stylesheet">
<title>Recruitment</title>
</head>
<body>
<header id="main-header">
<a href="./index.html" id="page-logo">MAV</a>
<nav>
<ul>
<li>
<a href="./activities.html" class="nav-underline">ACTIVITIES</a>
</li>
<li>
<a href="./members.html" class="nav-underline">MEMBERS</a>
</li>
<li>
<a href="./recruitment.html" class="nav-underline">RECRUITMENT</a>
</li>
</ul>
</nav>
<a href="#side-drawer" class="menu-btn">
<span></span>
<span></span>
<span></span>
</a>
</header>
<aside id="side-drawer">
<header>
<a href="#" class="menu-btn menu-btn-on">
<span></span>
<span></span>
<span></span>
</a>
</header>
<nav>
<ul>
<li>
<a href="./activities.html">ACTIVITIES</a>
</li>
<li>
<a href="./members.html">MEMBERS</a>
</li>
<li>
<a href="./recruitment.html">RECRUITMENT</a>
</li>
</ul>
</nav>
</aside>
<main>
<section class="section-padding section-top">
<div>
<div class="subtitle">
<span class="color-blue-600">R</span>ECRUITMENT
</div>
<span class="recruitment-title">MAV 7기 모집</span>
<div id="applyBtn">
<button href="#">모집완료</button>
</div>
</div>
</section>
<section class="section-padding section-middle">
<h1 class="listTitle">지원 자격</h1>
<ul class="ulItem">
<li class="liItem">학과(원전공/복수전공): 소프트웨어학과</li>
<li class="liItem">메타버스에 대해 여러 사람과 함께 알아보고 싶어요!</li>
<li class="liItem"> Unity || Unreal Engine을 이용해 자신만의 가상 세계를 만들어보고 싶어요!</li>
<li class="liItem">소프트웨어학과 선후배 / 동기들과 함께 즐거운 학기를 보내고 싶어요!</li>
<li class="liItem">1년이상 활동</li>
</ul>
</section>
<section class="section-middle">
<h1 class="listTitle">모집 일정</h1>
<div class="recruitment-box">
<div class="recruitment-box-item">
<h2>서류 접수</h2>
<p>2023.02.20(월) ~ 03.04(토)</p>
</div>
<div class="big-arrow">→</div>
<!-- <div class="recruitment-box-item">
<h2>서류 결과 발표</h2>
<p>2023.00.00</p>
</div>
<div class="big-arrow">→</div> -->
<div class="recruitment-box-item">
<h2>면접</h2>
<p>2023.03.08(수) ~ 03.10(금)</p>
</div>
<div class="big-arrow">→</div>
<div class="recruitment-box-item">
<h2>결과 발표</h2>
<p>2023.03.12(일)</p>
</div>
</div>
</section>
</main>
<footer>
</footer>
</body>
</html>