-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 998 Bytes
/
Copy pathindex.html
File metadata and controls
34 lines (33 loc) · 998 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
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>MagicColourGenerator</title>
<!--Styles-->
<link rel="stylesheet" href="./CSS/style.css">
</head>
<body>
<nav>
<div class="nav-container">
<h2>Magic Colour Generator</h2>
<div class="nav-links">
<ul>
<li><a href="index.html">Static Colours</a></li>
<li><a href="hex.html">Hex Colours</a></li>
</ul>
</div>
</div>
</nav>
<section class="hero">
<div class="container">
<h2>Your Color:👉 <span class="color">#f1f5f8</span></h2>
<button class="btn" id="btn">
Click Me
</button>
</div>
</section>
<script src="./JavaScript/script.js"></script>
</body>
</html>