-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
33 lines (33 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.0/font/bootstrap-icons.css">
<title>Text Tools</title>
</head>
<body>
<div class = wrapper id="wrapper">
<h1>Text Tools</h1>
<textarea class="text" id="text" placeholder="text to play with..." required rows="12" cols="70"></textarea>
<!-- <textarea class="textResult" id="textResult" placeholder="your result" required disabled rows="10" cols="75"></textarea> -->
<button class="upper">Upper Case</button>
<button class="lower">Lower Case</button>
<button class="swap">Swap Case</button>
<button class="random">Random Case</button>
<button class="extraSpaces"><i class="bi bi-x"></i> Extra Spaces</button>
<button class="extraLines"><i class="bi bi-x"></i> Extra Lines</button>
<button class="duplicateLines"><i class="bi bi-x"></i> Duplicate Lines</button>
<input class="findthis" placeholder="find the word to replace...">
<input class="replacethis" placeholder="replace the word with...">
<button class="replacewithtext">Replace</button>
<button class="clear"><i class="bi bi-trash3"></i></button>
<button class="copy"><i class="bi bi-clipboard-check"></i></button>
<!-- <button class="CountSentences">Count Sentences</button> -->
</div>
<script src="app.js"></script>
</body>
</html>