JavaScript required
We’re sorry, but Coda doesn’t work properly without JavaScript enabled.
Skip to content
Gallery
Introductory Guide To Web Development (2)
Introductory Guide To Web Development
More
Share
Explore
Introductory Guide To Web Development
Resources
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Triwizard Tournament Sign-Ups</title>
<style>
textarea {
background-color: aqua;
font-family: chalkduster;
}
</style>
</head>
<body>
<!--
FORMS!!!!!
-
-
-
-
Elements:
-
-
-
-
and so much more.......
the ( ) tag is a ( ) tag, similar to the ( ) tag
-->
<h1>Triwizard Tournament Sign-Ups</h1>
<hr>
<form>
<h3>Name:</h3>
<h3>Age:</h3>
<h3>Email:</h3>
<h3>Country:</h3>
<h3>Password:</h3>
<h3>Why do you want to join?</h3>
<hr>
<h3>Select your hobbies:</h3>
<ul>
<li>Wizard Duel</li>
<li>Wizard Art</li>
<li>Wizard Chess</li>
</ul>
<h3>Select your best subject:</h3>
<ul>
<li>Transfiguration</li>
<li>Potions</li>
<li>DADA</li>
<li>Charms</li>
<li>Muggle Studies</li>
<li>Other Subjects</li>
</ul>
<h3>Which school do you attend?</h3>
<hr>
<h3>Upload your personal waiver:</h3>
<hr>
<h3>CHECK BOX IF YOU AGREE TO TERMS OF SERVICE</h3>
<hr>
<h2>SUBMIT!!!!!</h2>
</form>
</body>
</html>
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
Ctrl
P
) instead.