-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (32 loc) · 1.34 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Calculation</title>
</head>
<body>
<main>
<div class="contents-wrapper">
<div class="contents">
<h1>数値を入力してください</h1>
<div class="radio-button">
<input type="radio" name="calc" value="tasu" onclick="radiocheck()" checked>足し算
<input type="radio" name="calc" value="hiku" onclick="radiocheck()">引き算
<input type="radio" name="calc" value="kake" onclick="radiocheck()">掛け算
<input type="radio" name="calc" value="wari" onclick="radiocheck()">割り算
</div>
<input type="text" id="number1"><span id="enzansi">+</span><input type="text" id="number2">
<div>
<p id="outPut">数値を入力してください</p>
</div>
<input type="button" value="計算結果を保存" id="btn">
<div id="addResult" class="container"></div>
</div>
</div>
</main>
<script src="./script.js"></script>
</body>
</html>