Build a Search App: Getting Started

structure.html

<html>
  <head>
    <title>Instant Search</title>
    <link rel="stylesheet" type="text/css" href="presentation.css" />
  </head>

  <body>
     <h1>Hello, World!</h1>
    <script type="text/javascript" src="behavior.js"></script>
  </body>
</html>

presentation.css

Create a blank file.

behavior.js

Create a blank file.

Up next: First Steps Towards Interactivity