-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hex Color!</title>
<link rel="stylesheet" href="libraries/css/bootstrap/bootstrap.css" />
<link rel="stylesheet" href="css/style.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Courgette"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
</head>
<body>
<div class="container">
<div class="row max-height align-items-center text-center">
<div class="col-10 col-md-6 mx-auto text-center">
<h1 class="text-uppercase">
hex color :<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="libraries/js/jquery.js"></script>
<script src="libraries/js/bootstrap/bootstrap.bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>