Newer
Older
2021-karen / game.html
@WATANABE Karen WATANABE Karen on 26 Nov 2021 682 bytes Add leaflet.js
<!DOCTYPE html>
<html>
<head>
<title>quiz</title>
<script type="text/javascript" src="quiz.js" charest="utf-8"></script>
<style type="text/css">
h1 {text-align: center;}
h2 {text-align: center;}
div {border: 1px solid black; margin: auto;
     width: 10em; text-align: center;}
body {background-color: wheat;}
</style>
</head>
<body>
<h1>クイズゲーム</h1>
<h2>問題:べき乗の演算子はどれでしょう。(制限時間:5秒)</h2>
<div><p>1: *</p></div>
<div id="correct"><p>2: **</p></div>
<div><p>3: %</p></div>
<p><button id="start" type="button" value="START">開始</button></p>
<p id="info">開始を押すとカウントダウンが始まります。</p>
</body>