-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.16 KB
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 1.16 KB
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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Color Introduction</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<script src="main.js"></script>
</head>
<body>
<h1 id="header">Color Introduction</h1>
<br><br><br><br><br>
<span style="display: inline-block; margin:0;">
<h2 id="label">This is black.</h2>
<button class="material-icons" onclick="speak()">volume_up</button>
</span>
<br>
<button id="black" onclick="black()">Black</button>
<button id="violet" onclick="violet()">Violet</button>
<button id="indigo" onclick="indigo()">Indigo</button>
<button id="blue" onclick="blue()">Blue</button>
<button id="green" onclick="green()">Green</button>
<button id="yellow" onclick="yellow()">Yellow</button>
<button id="orange" onclick="orange()">Orange</button>
<button id="red" onclick="red()">Red</button>
</body>
</html>