-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (30 loc) · 1009 Bytes
/
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
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Word Transformer</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Word Transformer</h1>
<label for="word">Enter a word:</label>
<input type="text" id="word" required>
<label for="operation">Choose an operation:</label>
<select id="operation">
<option value="reverse">Reverse</option>
<option value="capitalize">Capitalize</option>
<option value="repeat">Repeat</option>
<option value="countVowels">Count Vowels</option>
</select>
<div id="paramContainer" class="param-container">
<label for="param">Number of repetitions:</label>
<input type="number" id="param" value="1" min="1">
</div>
<button id="transformButton">Transform</button>
<div id="result"></div>
</div>
<script src="word-transformer.js"></script>
</body>
</html>