This repository has been archived by the owner on Apr 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entry.html
82 lines (75 loc) · 2.5 KB
/
entry.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
<!DOCTYPE html>
<html>
<head>
<title>エントリー | CPC2022</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./mvp.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-6M3CSL4E71"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-6M3CSL4E71');
</script>
</head>
<body>
<header>
<nav>
<a href="./index.html"><img alt="Logo" src="./logo.png" height="70"></a>
<ul>
<li><a href="./index.html">ルールブック</a></li>
<li><a href="./entry.html">エントリー</a></li>
<li><a href="./faq.html">FAQ</a></li>
</ul>
</nav>
</header>
<main>
<header>
<h1>CPCとは?</h1>
</header>
<section>
<aside>
<p>CPC(Control Practice Contest)とは、ロボットの自動制御とセンシングの技能を競う大会です.</p>
<p>ForteFibreの部内大会として数年前から実施されていた制御大会を2021年よりCPCと改名し、自動制御の技術を求める大会と位置付けました.</p>
<p>今年度より各チームにロボットを運営より割り当て・改良する制度を採用し、各チームが制御に専念できる体制を整えています.</p>
</aside>
</section>
</aside>
<hr>
<header>
<h1>エントリー要項</h1>
</header>
<section>
<table>
<thead>
<tr>
<th>項目</th>
<th>要項</th>
</tr>
</thead>
<tr>
<tr>
<td>エントリー締め切り</td>
<td>8/10</td>
</tr>
<tr>
<td>対象チーム</td>
<td>学生ロボコン経験1年未満のメンバーのみで構成されるチーム</td>
</tr>
</table>
</section>
<hr>
<header>
<h1>エントリーフォーム</h1>
</header>
<section>
エントリーは締め切られました.
</section>
</main>
<hr>
<footer>
CPC運営委員会
</footer>
</body>
</html>