uni

University stuff
git clone git://git.margiolis.net/uni.git
Log | Files | Refs | README | LICENSE

index.html (639B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 	<meta charset="utf-8">
      5 	<meta name="viewport" content="width=device-width, initial-scale=1">
      6 	<link rel='stylesheet' type='text/css' href='style.css'>
      7 	<title>Web Applications Project</title>
      8 </head>
      9 <body>
     10 
     11 <h1>Web Applications Project</h1>
     12 
     13 <form action="element.html" method="GET">
     14 	<input type="text" name="phrase" placeholder="Enter a phrase" required>
     15 	<select name="element">
     16 		<option value="water">💧</option>
     17 		<option value="earth">🗿</option>
     18 		<option value="fire">🔥</option>
     19 		<option value="air">☁️</option>
     20 	</select>
     21 	<button type="submit">Send</button>
     22 </form>
     23 
     24 </body>
     25 </html>