aboutsummaryrefslogtreecommitdiff
path: root/challenge-005/zapwai/javascript/005.html
blob: b613788d30a421c20ccb517cc15950d8b3311b3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
  <head>
    <style>
      body {background-color: lightgray;}
    </style>
  </head>
  <body>
    <br><br>
    <center>
      <p>Anagram Viewer!</p>
      <form id="uploadForm" enctype="multipart/form-data">
	<label for="text">Enter a word:</label>
	<input id="ourWord" type="text"><br>
	<label for="file">Select a file:</label>
	<input id="fileInput" type="file"><br>
      </form>
      <p id="ourParagraph">Hello World</p>
    </center>
    <script src="005-2.js"></script>    
  </body>
</html>