-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (58 loc) · 2.49 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!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">
<link rel="shortcut icon" href="assets/counterbox.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap" rel="stylesheet">
<title>CounterBox</title>
</head>
<body>
<div class="main-container">
<div>
<div>
<h1 class="title">CounterBox</h1>
<p class="desc">because every word counts.</p>
</div>
<div class="container">
<div class="content">
<div class="flex-row">
<div class="count-box">
<h1 id="characters">0</h1>
<span>Characters</span>
</div>
<div class="count-box">
<h1 id="words">0</h1>
<span>
Words</span>
</div>
<div class="count-box">
<h1 id="reading-time">0</h1>
<span>Reading time</span>
</div>
</div>
</div>
</div>
<div class="star-btn">
<a href="https://github.com/rutikwankhade/CounterBox" target="_blank" class="btn">⭐ Star on Github</a>
</div>
</div>
<div>
<textarea class="text-block" type="text" placeholder="✍ Type or paste your text"></textarea>
<div class="btns">
<a class="tweet-btn btn" id="tweet" href="https://twitter.com/intent/tweet?text=Hello%20world">
Tweet</a>
<button id="copy" class="btn">Copy</button>
<button id="clear" class="btn">Clear</button>
</div>
<h4 id="message"></h4>
</div>
</div>
<!-- <Footer>
Made with 💖 by <a href="https://twitter.com/WankhadeRutik">Rutik Wankhade</a>
</Footer> -->
</body>
<script src="App.js"></script>
</html>