-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 1012 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Random Colour Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="copyright" content="© 2019 Mamutlove">
<meta name="description" content="Random CSS Colour Generator. Get an hexadecimal CSS colour #HTML #CSS #JS. Just for fun">
<meta name="keywords" content="random color, random CSS colour, CSS colour generator, color css">
<meta name="robots" content="follow, all">
<meta name="language" content="en">
<meta http-equiv="author" content="Alejandro Mur">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Work+Sans:400,700" rel="stylesheet">
</head>
<body>
<main class="module">
<h1 class="module__heading">Get a random colour.</h1>
<p class="module__text">#FF0066</p>
<button class="module__btn js-getcolour">Generate</button>
</main>
<script src="js/random-colour.js"></script>
</body>
</html>