-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1.55 KB
/
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
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Hex Colour Generator</title>
<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=Handjet:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body onclick="randomHexColors()">
<div id="container">
<h1>Let's make colour</h1>
<p>Touch or reload the page <img width="30" height="30" src="https://img.icons8.com/3d-fluency/50/slightly-smiling-face-icon.png" alt="slightly-smiling-face-icon"/></p>
</div>
<footer>
<span class="footerText">Made with ❤️ by Shannon Kaluki</span>
<span class="links">
<a href="https://github.com/Shannon-Kioko" target="_blank"><img width="24" height="24"
src="https://img.icons8.com/3d-fluency/94/github.png" alt="github" /></a>
<a href="https://www.linkedin.com/in/shannon-kioko/" target="_blank"><img width="24" height="24"
src="https://img.icons8.com/3d-fluency/24/linkedin.png" alt="linkedin" /></a>
<a href="https://twitter.com/ShannonKaluki" target="_blank"><img width="24" height="24"
src="https://img.icons8.com/3d-fluency/94/twitter-circled.png" alt="twitter-circled" /></a>
</span>
</footer>
<script src="script.js"></script>
</body>
</html>