-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 889 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Conversion Utility</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Text Conversion Utility</h1>
<input type="text" id="inputText" placeholder="Enter text here">
<button onclick="convertText('upper')">Convert to Uppercase</button>
<button onclick="convertText('lower')">Convert to Lowercase</button>
<button onclick="convertText('capitalize')">Capitalize Each Word</button>
<button onclick="convertText('title')">Convert to Title Case</button>
<button onclick="convertText('reverse')">Reverse Text</button>
<button onclick="checkPalindrome()">Check Palindrome</button>
<p id="outputText"></p>
</div>
<script src="script.js"></script>
</body>
</html>