-
Notifications
You must be signed in to change notification settings - Fork 0
/
random_rgba_color.html
36 lines (31 loc) · 1.23 KB
/
random_rgba_color.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
<!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">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="reset.css">
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<title>Random color background</title>
</head>
<body>
<div id="container">
<div id="display-color">
Background Color: <span id="color_code">255, 255, 255,0</span>
</div>
<div id="button-container">
<input type="button" id="change_color" value="change background color"
onclick="location.href='./index.html'">
<input type="button" id="change_color_rgba" value="change background in rgba code">
</div>
</div>
<footer>
<p id="container-credits">designed by <a id="credits" href="https://github.com/bubu2323">Carolina Tronci</a></p>
</footer>
<script src="./random_rgba.js"></script>
</body>
</html>