-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (34 loc) · 1.31 KB
/
index.html
File metadata and controls
41 lines (34 loc) · 1.31 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>bio</title>
<link rel= "stylesheet" href="styles.css">
</head>
<body>
<div class="main-box">
<h1>Hello</h1>
<p>Welcome to Tom's page, see projects below </p>
<h3>Copywork Practice</h3>
<p>Copywork refines your prose by learning directly from the greats.
Enter the writing you would like to practice below and click "SUBMIT".
</p>
<form>
<textarea id="textarea-el" class="user-input" type="text" name="userinput" rows="6" cols="33" placeholder="Enter the text you would like to copy." maxlength="300"></textarea>
</form>
<div class="container flex">
<p class="arrow">↓</p>
<button id="testbutton-el">TEST</button>
<button id="submitbutton-el">SUBMIT</button>
<button id="resetbutton-el">RESET</button>
<p class="arrow">↓</p>
</div>
<form>
<textarea id="textareainput-el" class="user-input" type="text" name="userinput" rows="6" cols="33" placeholder="Write the text you entered." maxlength="300"></textarea>
</form>
<h3>Pixel</h3>
<p><a href="pixel.html">Pixel project</a></p>
</div>
</body>
<script src="./scripts/script.js"></script>
</html>