-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoin.html
43 lines (35 loc) · 1.15 KB
/
join.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>프로그래밍 동아리</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="joinStyles.css">
</head>
<body>
<nav>
<a href="./index.html">
<img src="./images/logo.png" alt="로고">
</a>
<ul>
<li><a href="./#home">홈</a></li>
<li><a href="./#about">소개</a></li>
<li><a href="./#organizers">운영진</a></li>
<li><a href="./#contact">문의</a></li>
<li id="joinus"><a href="./join.html">JOIN US!</a></li>
</ul>
</nav>
<div class="join-us-page">
<button class="rounded-box content" onclick="window.location.href='https://ko.wikipedia.org/wiki/Char'">
<h2>캐릭터 지원</h2>
<p>캐릭터 동아리에 지원하세요!</p>
</button>
</div>
<footer>
<p>© 2024 프로그래밍 동아리</p>
</footer>
<script src="script.js"></script>
<script src="joinScript.js"></script>
</body>
</html>