<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Triwizard Tournament Sign-Ups</title>
<style>
body {
background-color: rgb(0, 12, 74);
color: yellow;
}
textarea:hover {
background-color: red;
}
</style>
</head>
<body>
<!--
FORMS!!!!!
- Required if you want user inputs on your webpage
- For example, a sign page for a website is an example of an HTML form
- Schoolhouse uses multiple HTML form elements too
- HTML forms is a very broad subject, a lot to cover
Elements:
- Text boxes
- Check boxes
- Dropdown menus
- Radio buttons
and so much more.......
the <form> tag is a parent tag, similar to the <table> tag
-->
<h1>Triwizard Tournament Sign-Ups</h1>
<hr>
<form>
<h3>Name: <input type = "text" name = "nameInput"></h3>
<h3>Age: <input type = "text" name = "ageInput"></h3>
<h3>Email: <input type = "text" name = "emailInput"></h3>
<h3>Country: <input type = "text" name = "countryInput"></h3>
<h3>Password: <input type = "password" name = "passwordInput"></h3>
<h3>Why do you want to join?</h3>
<textarea name = "whyInput" rows = "5" cols = "30"></textarea>
<hr>
<h3>Select your hobbies:</h3>
<ul>
<li style = "list-style-type: none;"><input type = "checkbox" name = "duelCheck"> Wizard Duel</li>
<li style = "list-style-type: none;"><input type = "checkbox" name = "artCheck"> Wizard Art</li>
<li style = "list-style-type: none;"><input type = "checkbox" name = "chessCheck"> Wizard Chess</li>
</ul>
<h3>Select your best subject:</h3>
<ul>
<li style = "list-style-type: none;"><input type = "radio" name = "transSubject"> Transfiguration</li>
<li style = "list-style-type: none;"><input type = "radio" name = "potionsSubject"> Potions</li>
<li style = "list-style-type: none;"><input type = "radio" name = "dadaSubject"> DADA</li>
<li style = "list-style-type: none;"><input type = "radio" name = "charmsSubject"> Charms</li>
<li style = "list-style-type: none;"><input type = "radio" name = "muggleSubject"> Muggle Studies</li>
<li style = "list-style-type: none;"><input type = "radio" name = "otherSubject"> Other Subjects</li>
</ul>
<h3>Which school do you attend?</h3>
<select name = "schoolDropdown">
<option selected>~Select One~</option>
<option>Hogwarts</option>
<option>Beauxabatons</option>
<option>Drumstrang</option>
</select>