-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (106 loc) · 4.61 KB
/
index.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="ja">
<head>
<meta charset="utf-8">
<title>本郷マイコン部</title>
<meta name="description" content="本郷学園マイコン部のホームページです。">
<link rel="icon" type="image/svg+xml" href="images/.svg">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://unpkg.com/destyle.css@1.0.5/destyle.css">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header>
<div class="wrapper">
<a class="logo" href="#home">HONGO-MC-Club</a>
<nav>
<button class="btn-menu">Menu</button>
<ul class="main-nav">
<li><a href="#activity">Activity</a></li>
<li><a href="#news">News</a></li>
<li><a href="#info">Info</a></li>
</ul>
</nav>
</div>
</header>
<section id="home">
<div class="wrapper">
<h1>HONGO MICRO COMPUTER CLUB</h1>
</div>
</section>
<section id="activity" class="wrapper">
<h2>activity</h2>
<p>
主にパソコン班・ロボット班・レゴ班の、3つの班に分かれて活動しています。
それぞれの活動内容は以下の通りです。
ここで紹介しているもの以外にもやりたいことがあれば、部員が自主的に提案し、個人やグループで活動しています。
</p>
<div class="groups">
<div class="group">
<h3>パソコン班</h3>
<p>
パソコン班では主にプログラミングを用いた活動をしています。
C++言語を用いて、競技プログラミングを通してアルゴリズムについて学んだリ、hsp言語を用いてゲームを作ったりしています。
作られたゲームの一部は文化祭で体験できます。
その他にもunityでのゲーム開発などをする部員もいて、最も所属数が多く、活動内容も幅広いグループです。
</p>
</div>
<div class="group">
<h3>ロボット班</h3>
<p>
ロボット班では自分たちで組み立てたロボットを動かします。
3体のロボットを所持しており、活動ではロボットを動かすためのコードを書いています。
文化祭ではロボットのアルゴリズム体操を披露したり、コントローラーを使ってその場で動かしたりしています。
</p>
</div>
<div class="group">
<h3>レゴ班</h3>
<p>
レゴ班ではその名の通り、レゴを組み立てています。
制御装置を用いて、レゴが電気で動くようにアルゴリズムを作っています。
文化祭ではこれらの作品を展示しており、実際に触ることができます。
また、毎年大会に出場しています。
</p>
</div>
</div>
</section>
<section id="news">
<h2>News</h2>
<div class="wrapper">
<table class="news-table">
<tr>
<td class="news-date">2021年04月07日</td>
<td class="news-content">ホームページ更新中</td>
</tr>
</table>
</div>
</section>
<section id="info">
<h2>Info</h2>
<div class="wrapper">
<table class="info-table">
<tr>
<td class="info-title">活動曜日</td>
<td class="info-content">月・金</td>
</tr>
<tr>
<td class="info-title">活動時間</td>
<td class="info-content">放課後.下校時刻まで</td>
</tr>
<tr>
<td class="info-title">部員数(中学・高校)</td>
<td class="info-content">-名</td>
</tr>
<tr>
<td class="info-title">顧問数</td>
<td class="info-content">3名</td>
</tr>
</table>
</div>
</section>
<div class="footer">
<p><small>© 2021 本郷マイコン部</small></p>
</div>
<script src="js/script.js"></script>
</body>
</html>