-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (34 loc) · 973 Bytes
/
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
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<!-- bootstrap css -->
<!--<link rel="stylesheet" href="bootstrap.min.css">-->
<!-- main css -->
<link rel="stylesheet" href="main.css">
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Courgette" rel="stylesheet">
<!-- font awesome
<script src="all.js"></script>-->
<title>Hex Color</title>
<style>
</style>
</head>
<body>
<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 Color :<span id="hex-value"></span></h1>
<div class="btn-text-right">
<button type="button" id="btn" class="btn btn-primary">Click me</button>
</div>
</div>
</div>
</div>
<!-- jquery
<script src="jquery-3.3.1.min.js"></script> -->
<!-- bootstrap js -->
<!--<script src="bootstrap.bundle.min.js"></script>-->
<!-- script js -->
<script src="app.js"></script>
</body>
</html>