-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (85 loc) · 3.33 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
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Count File Words, Lines & Bytes</title>
<link rel="stylesheet" href="index.css" />
<link rel="shortcut icon" href="favicon.svg" type="image/x-icon" />
</head>
<body>
<header>
<h1>Count File Words, Lines & Bytes</h1>
<button
class="button switch-themes"
aria-label="Activate dark theme if current theme is light and vice-versa"
></button>
</header>
<main>
<form class="form">
<fieldset class="upload">
<label class="button drop-zone" for="button">
<div>Drag and Drop files...</div>
<div>or Click to select them...</div>
<div class="pad-top second-text">
<div>
All files are processed locally in your browser.
</div>
<div>No remote upload is performed.</div>
</div>
</label>
<input class="input" type="file" multiple />
</fieldset>
</form>
<table>
<thead>
<tr>
<th>
<span class="label">File Name</span>
<button
class="button settings second-text"
aria-label="settings"
></button>
</th>
<th>
<span class="label">Word Count</span>
<button
class="button settings second-text"
aria-label="settings"
></button>
</th>
<th>
<span class="label">Line Count</span>
<button
class="button settings second-text"
aria-label="settings"
></button>
</th>
<th>
<span class="label">Byte Count</span>
<button
class="button settings second-text"
aria-label="settings"
></button>
</th>
</tr>
</thead>
<tbody>
<tr class="template">
<td class="file-name spinner"></td>
<td class="word-count spinner"></td>
<td class="line-count spinner"></td>
<td class="byte-count spinner"></td>
</tr>
</tbody>
</table>
</main>
<footer>
<a
href="https://github.com/new-AF/Web-App-Count-File-Words-Lines-Bytes"
>By Abdullah Fatota</a
>
</footer>
<script src="index.js"></script>
</body>
</html>