-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivities.html
90 lines (85 loc) · 2.59 KB
/
activities.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
<!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" />
<meta charset="UTF-8" />
<link rel="stylesheet" href="./styles/shared.css" />
<link rel="stylesheet" href="./styles/subpages.css" />
<link rel="stylesheet" href="./styles/activites.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;800&family=Paytone+One&family=Quicksand:wght@300;400&family=Rajdhani:wght@600&display=swap"
rel="stylesheet" />
<title>MAV</title>
<!-- <link href="https://fonts.googleapis.com/css2?family=Gothic+A1:wght@400;800&display=swap" rel="stylesheet"> -->
<script src="./javascript/index.js" defer></script>
</head>
<body>
<header id="main-header">
<!-- <a href="./index.html" id="page-logo">MAV</a> -->
<a href="./index.html">
<img src="./images/logo.svg" alt="mav-logo" width="70" />
</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>
<!-- MAV 명칭 소개 -->
<section class="section-padding">
<div>
<div class="subtitle">
<span class="color-blue-100">A</span>CTIVITIES
</div>
<p>성균관대학교 메타버스 스튜디오</p>
</div>
</section>
<section class="section-padding">
<div class="project-title">Unity study - boost project</div>
<img src="./images/activities1.gif" alt="unity-activities1" id="unity-activities1" />
</section>
</main>
<footer></footer>
</body>
</html>