html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Barra di Ricerca</title>
<style>
/* Stile per evidenziare le parole trovate */
.highlight {
background-color: yellow;
font-weight: bold;
}
</style>
</head>
<body>
<h1>Barra di Ricerca</h1>
<input type="text" id="searchInput" placeholder="Cerca...">
<!-- Contenuti HTML visibili -->
<div class="searchable">
<h2>Elemento 1</h2>
<p>Questo è il primo elemento.</p>
</div>
<div class="searchable">
<div>
<h2>Elemento 2</h2>
<p>Questo è il secondo elemento.</p>
</div>
</div>
css
css
1
2
3
body {
}
js
js
1
BROWSER
Console
Run