-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (65 loc) · 3.44 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
<!DOCTYPE html>
<html lang="it">
<head>
<link rel="shortcut icon" type="image/png" href="img/logo.png" />
<title>Socus - Speed Reading</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Free fast reading tool easy to use. Read without distraction and improve your speed, even when you are tired.">
<meta name="keywords" content="fast reader, speed reader, read, tool, free" />
<link rel="stylesheet" type="text/css" href="styles/universal.css" />
<link rel="stylesheet" type="text/css" href="styles/homepage.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;300;400;700&display=swap" rel="stylesheet" />
</head>
<body>
<div id="popup" class="input-text-popup">
<textarea placeholder="Insert text"></textarea>
<div id="input-text-buttons-container">
<input type="button" id="save-text" class="disabled-button items-button" value="Save"></input>
<input type="button" id="close" class="items-button" value="Close"></input>
</div>
<div id="confirm-popup" class="input-text-popup">
<div id="alert-text"><b>Warning!</b> Unsaved changes will be lose forever.</div>
<div id="input-text-buttons-container">
<input type="button" id="cancel" class="items-button" value="Cancel"></input>
<input type="button" id="confirm-close" class="disabled-button items-button" value="Close"></input>
</div>
</div>
<div id="how-it-works">How it works?</div>
</div>
<span id="title">Socus</span>
<hr />
<div id="description">Enter all the necessary information and start reading faster than before with less tiredness.</div>
<div id="container-buttons">
<div class="side-button">
<div class="side-button-title">Text</div>
<div id="text">Empty</div>
</div>
<div class="side-button">
<div class="side-button-title"><abbr title="Word per second">Speed</abbr></div>
<select id="speed">
<option value="100">100 wpm</option>
<option value="200">200 wpm</option>
<option value="300" selected="selected">300 wpm</option>
<option value="400">400 wpm</option>
<option value="500">500 wpm</option>
<option value="600">600 wpm</option>
<option value="700">700 wpm</option>
<option value="800">800 wpm</option>
<option value="900">900 wpm</option>
<option value="1000">1000 wpm</option>
</select>
</div>
<div id="submit" class="disabled-button">Start reading</div>
</div>
<footer>
<span>Copyright © 2022 LuigiImVector - MIT License </span>
<a href="https://github.com/LuigiImVector/Socus" target="_blank">
<img src="img/GitHub-Mark-64px.png" alt="Github logo" />
</a>
</footer>
<script src="script.js"></script>
</body>
</html>