-
Notifications
You must be signed in to change notification settings - Fork 1
/
rules.html
41 lines (36 loc) · 1.36 KB
/
rules.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta
name="description"
content="電気通信大学 工学研究部は部員各自が作りたいものを作るサークルです。電子工作からプログラムまで幅広く活動しています。また、Maker Faire Tokyoや技術書典などのイベントに参加し、制作物を展示することもあります。"
>
<meta
name="viewport"
content="width=device-width, initial-scale=1"
>
<link rel="stylesheet" href="css/main.css">
<link rel="icon" href="img/kokenLogo.ico">
<title>工学研究部の規約・規則 - UEC Koken</title>
<script type="module">
import { KokenGlobalHeader } from "./js/header.js"
customElements.define("koken-global-header", KokenGlobalHeader)
</script>
</head>
<body>
<koken-global-header></koken-global-header>
<div class="container main-container">
<main>
<h1>工学研究部の規約・規則について</h1>
<p>工学研究部の規約・規則を掲載しています。</p>
<p>
<a href="rules/koken-rules.pdf">工学研究部規約および部費納入規則</a>
</p>
</main>
</div>
<footer class="container global-footer">
<p class="copyright"><small>© UEC Koken</small></p>
</footer>
</body>
</html>