-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
65 lines (55 loc) · 2.65 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<html>
<head>
<title>Hex© Color Code</title>
<link rel="icon" href="./logo.jpg" type="image/jpg">
<script src="./js/script.js"></script>
<link rel="stylesheet" href="./css/darkaqua.css">
<!-- Add social icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css">
<style>
/*importing variety of fonts from www.fonts.google.com*/
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400&family=Muli&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&family=IM+Fell+French+Canon+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gotu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Sen:wght@700&display=swap');
</style>
</head>
<body class="body">
<div class="headbox">
<h class="t">#hex </h>
<h class="u"> Color Code</h>
</div>
<div class="bar">
</div>
<div class="box1">
<label class="label a margin20">Select Color</label>
<input type="color" id="color-box" class="input"></input>
<button onclick="check1()" class="b button1" id="but1">Color to Hex Code</button>
<button onclick="check2()" class="b button2" id="but2">Hex Code to Color</button>
<input value="Enter #Hex Code" class="input margin20 b textbox" id="value-box"></input>
<label class="label margin20">
<label class="a">Enter<text class="t"><b>#hex</b></text>Code</label>
</label>
</div>
<div class="social-buttons">
<a href="https://twitter.com/code_chaser_?ref_src=twsrc%5Etfw" class="social1"><i
class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/code_chaser_/" class="social2">
<ii class="fab fa-instagram"></ii>
</a>
<a href="https://www.youtube.com/channel/UCaZQZAAhUZ2YUXhUShpbTMg/" class="social3">
<iii class="fab fa-youtube"></iii>
</a>
</div>
<br />
<br />
<div class="misc1">
<a href="https://www.github.com/code-chaser/"><text class="sign" style="text-decoration:none;">code-chaser™
@github</text><br /></a>
<text2 class="u" style="font-size:12px; margin:5px;">-owned by Yashvardhan Baid</text2>
</div>
</body>
</html>