-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 734 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Color Randomizer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="main">
<h1 id="text">Color randomizer</h1>
<button id="rand" onclick="rand()">Click me!</button>
<div id="result">
<p id="color1">RGB: 255, 255, 255 <br> HEX: #ffffff</p>
<p id="color2">RGB: 0, 0, 0 <br> HEX: #000000</p>
</div>
<footer id="footer"> © @Gabriel_LIUK <a id="github" href="https://github.com/DevGabrielAfonso/">GitHub</a> </footer>
</main>
</body>
<script src="script.js"></script>
</html>