forked from mciver83/vanilla-js-1-wlh6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (23 loc) · 769 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="greeting">Hello!</h1>
<input id="number" type="number" placeholder="pick a number">
<button onclick="double()">multiply by 2</button>
<span id="result"></span>
<button onclick="makeBlue()">make shapes blue</button>
<button onclick="makeSquare()">make all shapes square</button>
<div class="shape circle"></div>
<div class="shape circle"></div>
<div class="shape circle"></div>
<div class="shape circle"></div>
<script src="index.js"></script>
</body>
</html>