-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sort Lines</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Sort Lines</h1>
<div class="sort-container">
<select id="sortMethod">
<option value="alphabetic">Sort By Alphabetic</option>
<option value="alphabeticReverse">Sort By Alphabetic Reverse</option>
<option value="length">Sort By Length</option>
<option value="lengthReverse">Sort By Length Reverse</option>
<option value="reverse">Reverse Lines</option>
<option value="shuffle">Shuffle Lines</option>
</select>
<textarea id="textArea" rows="10" placeholder="Enter Text"></textarea>
<button class="sort-button" onclick="sortLines()">Sort</button>
<button class="copy-button" onclick="copyText()">Copy</button>
</div>
</div>
<footer>
<p>© 2024 Tegar Sabila.</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>