-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous" />
<title>Try Tri</title>
</head>
<body>
<div class="overview">
<div class="notepad">
<div class="notepadside">
<div class="tt">Notepad</div>
<div class="copy">Copy all</div>
<i id="far" class="far fa-clipboard"></i>
<textarea name="text" placeholder="Enter Something here, It saves automatically." id="text" cols="30"
rows="10"></textarea>
<div class="btns">
<button class="ntb" id="bullets">Bullets</button>
<button class="ntb" id="clear">Clear all!</button>
</div>
</div>
<div class="colors">
<button class="circle" id="yellow"></button>
<button class="circle" id="blue"></button>
<button class="circle" id="pink"></button>
<button class="circle" id="green"></button>
<button class="circle" id="black"></button>
</div>
</div>
<!-- <div class="timer">
<div class="stopwatch"></div>
<div class="timer"></div>
</div>
<div class="clrpicker">
<div class="tt">Pick from the colour Picker</div>
<div class="set">
<input type="color" value="#000000" id="clr">
<button id="pick"><i class="fa fa-eye-dropper" aria-hidden=" true"></i> Get Hex code!</button>
</div>
<div class="tt">Hex value is:</div>
<input type="text" value="#000000" id="hex">
</div> -->
</div>
</body>
<script src="main.js"></script>
</html>