-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
61 lines (55 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>JS Typing Speed Test</title>
<link
rel="stylesheet"
href="//fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,700,700i,900,900i"
type="text/css"
media="all"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="masthead">
<h1>تست سنجش سرعت تایپ</h1>
</header>
<main class="main">
<article class="intro">
<p dir="rtl">
فرایند سنجش سرعت تایپ بدین گونه است که با شروع تایپ کاربر , تایمر شروع
به شمارش زمان میکند !!! و با تایپ هر حرف توسط کاربر مطابقت متن کاربر
با متن نمایش داده شده چک میشود
</p>
</article>
<!-- .intro -->
<section class="test-area">
<div class="pattern">متن الگو :</div>
<div id="origin-text">
<p>The text to test.</p>
</div>
<!-- #origin-text -->
<div class="test-wrapper">
<textarea
id="test-area"
name="textarea"
rows="6"
placeholder=" با تایپ اولین حرف تایمر شمارش را آغاز میکند"
></textarea>
</div>
<!-- .test-wrapper -->
<div class="meta">
<section id="clock">
<div class="timer">00:00:00</div>
</section>
<button id="reset">از نو</button>
</div>
<!-- .meta -->
</section>
<!-- .test-area -->
</main>
<script src="./app.js"></script>
</body>
</html>