pull/1385/merge
Zaki 4 days ago committed by GitHub
commit 0f65d4230b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -6,3 +6,6 @@
background-color: lightcoral;
border-color: red;
}
.container{
display: flex;
}

@ -8,15 +8,17 @@
<body>
<h1>Practice your typing</h1>
<div>Click start to have a quote displayed. Type the quote as fast as you can!</div>
<p id="quote"></p>
<p id="message"></p>
<div>
<input type="text" aria-label="current word" id="typed-value" />
</div>
<div>
<button id="start" type="button">Start</button>
<p>Click start to have a quote displayed. Type the quote as fast as you can!</p>
<p id="quote"></p>
<p id="message"></p>
<div class="container">
<div>
<input type="text" aria-label="current word" id="typed-value" />
</div>
<div>
<button id="start" type="button">Start</button>
</div>
</div>
<script src="./index.js"></script>
</body>

Loading…
Cancel
Save