-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (157 loc) · 5.31 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>パソコン同好会</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, user-scalable=yes" >
<link rel="stylesheet" href="./index.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=Kiwi+Maru:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=DotGothic16&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet">
</head>
<body>
<header>
<h1>パソコン同好会</h1>
</header>
<main>
<div class="about">
<div class="heading">
<h1>ABOUT</h1>
</div>
<div class="content">
<p><strong>部員</strong><br/>1年: 人 2年:5人 3年:2人</p>
<p><strong>活動場所</strong><br/>教室・PC室など</p>
<p>2学期からの入部大歓迎です!</p>
</div>
</div>
<div class="works">
<div class="heading">
<h1>WORKS</h1>
</div>
<div class="elements">
<div class="element">
<a href="https://scratch.mit.edu/projects/500491330">
<img src="img/life-game.png">
<div class="menu-title">
<h3>Life Game</h3>
<h4>柳瀬雄太</h4>
</div>
</a>
</div>
<div class="element">
<a href="https://scratch.mit.edu/projects/493810953/">
<img src="img/stopwatch.png">
<div class="menu-title">
<h3>ストップウォッチ</h3>
<h4>柳瀬雄太</h4>
</div>
</a>
</div>
<div class="element">
<a href="https://tym-tanno.github.io/waters3/">
<img src="img/waters.png">
<div class="menu-title">
<h3>Waters3</h3>
<h4>丹野和哉</h4>
</div>
</a>
</div>
<div class="element">
<a href="https://tym-tanno.github.io/replacingstring/">
<img src="img/文字列変換.png">
<div class="menu-title">
<h3>文字列変換</h3>
<h4>丹野和哉</h4>
</div>
</a>
</div>
<div class="element">
<a href="https://ranhai613.github.io/counter/">
<img src="img/counter.png">
<div class="menu-title">
<h3>Counter</h3>
<h4>胡 藍海</h4>
</div>
</a>
</div>
<div class="element">
<a href="https://unityroom.com/games/jankoro">
<img src="img/jankoro.png">
<div class="menu-title">
<h3>雀コロ</h3>
<h4>胡 藍海</h4>
</div>
</a>
</div>
<div class="element">
<a href="https://scratch.mit.edu/projects/562018125">
<img src="img/素数判定.png">
<div class="menu-title">
<h3>素数判定</h3>
<h4>福田唯人</h4>
</div>
</a>
</div>
<div class="element">
<a href="https://scratch.mit.edu/projects/556583680/">
<img src="img/自動因数分解.png">
<div class="menu-title">
<h3>自動因数分解</h3>
<h4>福田唯人</h4>
</div>
</a>
</div>
<div class="element">
<button onclick="navigateRice()">
<img src="img/飯テロ.png">
<div class="menu-title">
<h3>飯テロ</h3>
<h4>奥山洋之</h4>
</div>
</a>
</div>
<div class="empty"></div>
<div class="empty"></div>
<div class="empty"></div>
</div>
</div>
<div class="form">
<div class="heading">
<h1>
FORM
</h1>
</div>
<form
class="content"
action="https://formspree.io/f/meqvrddw"
method="POST"
>
<textarea placeholder="何かあればどうぞ!" name="message" id="textarea"></textarea>
<button type="submit">送信!</button>
</form>
</div>
</main>
<footer>
<div class="icons">
<a href="https://twitter.com/toyama_pc_club"><i class="icon fab fa-twitter"></i></a>
<a href="https://instagram.com/toyama_pc_club"><i class="icon fab fa-instagram"></i></a>
<a href="https://line.me/R/ti/p/%40007qmqlh"><i class="icon fab fa-line"></i></a>
</div>
<p>This is not a school official website.</p>
<p>© 2021 戸山高校パソコン同好会</p>
</footer>
</body>
<script>
window.addEventListener("beforeunload", () => {
const textarea = document.getElementById("textarea")
textarea.value = ""
})
const navigateRice = () => {
const isMobile = window.innerWidth < 400
if(isMobile) window.location.href = "https://rice-terrorism.web.app"
else window.location.href = "rice.html"
}
</script>