-
Notifications
You must be signed in to change notification settings - Fork 0
/
hex.html
50 lines (46 loc) · 2.21 KB
/
hex.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE Html>
<html lang = "en">
<head>
<meta charset="UFT-8">
<meta name="viewpoint" content="width=device-width, initial-scale=1.0">
<title>Colour Change Button (With Hex Code)</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Courgette">
<link rel="stylesheet" href="./css/all.css">
</head>
<body>
<!-- Navigation Bar -->
<ul>
<li><a href="index.html">Colour Change Button</a></li>
<li><a href="hex.html">Colour Change Button (With Hex Code)</a></li>
<li><a href="quotes.html">Random Quote</a></li>
<li><a href="counter.html">Counter</a></li>
<li><a href="Gallery.html">Gallery</a></li>
<li><a href="bakeryWebpage.html">Bakery Webpage Example</a></li>
<li><a href="calculator.html">Calculator</a></li>
<li><a href="clock.html">Clock</a></li>
<li><a href="budget.html">Budget App</a></li>
<li><a href="mortgage.html">Mortgage Calc.</a></li>
<li><a href="brickBreaker.html">Brick Breaker</a></li>
<li><a href="RSS.html">RSS Feed for BBC News</a></li>
<li><a href="WhackAMole.html">Whack A Mole</a></li>
<li><a href="todo.html">ToDo</a></li>
<li><a href="hangman.html">Hangman</a></li>
<li><a href="headsOrTails.html">Heads Or Tails</a></li>
<li><a href="plinko.html">Plinko</a></li>
</ul>
<!-- div for hex code & Button -->
<div class="container">
<div class="row max-height align-items-center">
<div class="col-10 col-md-6 mx-auto text-center">
<h1 class=text-uppercase>hex colour : <span id="hex-value"></span></h1>
<a href="#" id="btn" class="btn btn-secondary text-uppercase my-2">Click Me!</a>
</div>
</div>
</div>
<script src="./js/jquery-3.4.1.min.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
<script src="./js/hex.js"></script>
</body>
</html>