forked from datagrovecr/jaja_search_replace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (23 loc) · 1016 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<input id='search' placeholder="search" value="in"><input placeholder="replace" id='replace' value="out"><button id="go">replace</button>
<div id="editor" style="border: 1px solid red; height: 400px; width: 100%">
</div>
<div id="content" style="display:none">
Shampooing with tayaw kinpun has been an important tradition in Burmese culture since ancient times. It is believed to wash away bad luck. Today, people in Myanmar wash their heads with tayaw kinpun during New Year's celebrations to leave behind bad omens.
<pre>
function max(a, b) {
return a > b ? a : b
}</pre>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>