-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.05 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
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Find & Replace</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Find & Replace</h1>
<div class="input-group">
<label for="findText">Find Text :</label>
<input type="text" id="findText" placeholder="find text">
</div>
<div class="input-group">
<label for="replaceText">Replace With :</label>
<input type="text" id="replaceText" placeholder="new text">
</div>
<div class="input-group">
<label for="inputText">Enter Text :</label>
<textarea id="inputText" placeholder="Enter text here..."></textarea>
</div>
<button id="findReplaceBtn">Find And Replace</button>
<button id="copyBtn">Copy</button>
</div>
<footer>
<p>© 2024 Tegar Sabila.</p>
</footer>
<script src="script.js"></script>
</body>
</html>