SVN / public / code / lecture-10 / search.html

Revision 1943
Date2026-01-13T16:14:04+01:00
Committerhb1003
Download
<!DOCTYPE html>
<html>
  <head>
    <title>Our first search engine</title>
    <link rel="stylesheet" href="style.css"/>
    <script src="search.js" defer></script>
  </head>
  <body>
    <h1 id="title">Our first search engine</h1>
    <p>(1990s look&amp;feel)</p> 
    <input type="text" id="input" autocomplete="off"
                       name="query" size="40"
                       placeholder="What do you want"/>
    <p>Query: <span id="query"></span></p>
    <p>Result: <span id="result"></span></p>
  </body>
</html>