Many types
<input type="text">
<input type="date">
<input type="file">
<input type="checkbox">
And many more!
Back
Action
Front
The url to send form data to
Back
BoilerPlate
Front
<! DOCTYPE html>
<html>
<head> (metadata)
<title></title>(What goes in tab. Also important for search engines)
</head>
<body>(content)
</body>
</html>
Back
Method
Front
The type of HTTP request (Post, Get, Delete, etc)
Back
COMMON TAGS
Front
<h1> header</h1>
<p>paragraph</p>
<button> I wonder hwat this could possibly be</button>
<ul> (unordered list
<li> List item 1</li>
<li> List Item 2</li>
</ul>
<ol>(The same thing as ul butordered)
<div> Just separates shit.
Back
HTML ATTRIBUTES
Front
Add additional info to tags. Key value pairs.
<tag name ="value"></tag>
<img src ="corgi">
Src and name ar ethe attribues
Back
FORMS
Front
<form action="/page_where_form_submits" method="POST">
(inputs go in here!!)
</form>