-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
504fd75
commit 1a98da8
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<title>Take a Typing Test</title> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<h1>Take a Typing Test</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="./List_of_Test_Results_for_a_User_Page.html">Test Results</a></li> | ||
<li><a href="./About_Us.html">About Us</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<section> | ||
<h2>Type the Following Text</h2> | ||
<p>The quick brown fox jumps over the lazy dog.</p> | ||
<form> | ||
<label for="text-input">Type Here:</label> | ||
<input type="text" id="text-input" name="text-input"><br> | ||
|
||
<input type="submit" value="Submit"> | ||
</form> | ||
</section> | ||
</main> | ||
<footer> | ||
<p>© 2023 GANG ITC. All rights reserved.</p> | ||
</footer> | ||
</body> | ||
|
||
</html> |