The button element allows the user to send the data that they have input into the textbox.
Back
<div> </div>
Front
A division element used for general purpose containing for other elements. Used the most in HTML out of all other elements.
Back
Nesting links
Front
<p>Here you can view more cat photos</p>
Where "cat photos" is the hyperlink to the cat photos. In html this looks like...
<p> View more <a href="http://freecatphotoapp.com" target="_blank">cat photos</a>
</p>
Back
<header> </header>
Also:
<footer>Copyright Cat Photo App</footer>
nav
video
article
section
Front
These tags are used to help optimize the search engine and also make your code easier to read
Back
<main> </main>
Front
Part of HTML5 tags used in making your HTML easier to read and helping with Search Engine Optimization (SEO).
Other tags include:
header
footer
nav
video
article
section
Back
<p> </p>
Front
these tags signify the location for a paragraph
Back
target="_blank"
Front
Used in anchor tag causing the link to open in a new window. Typically placed between website and ">".
Back
<a href="htttps://freecodecamp.org">This links to freecodecap.org</a>
Front
An anchor element <a... that uses a web address as a destination called an href attribute for users to easily access content outside your web page.
After the web link tag closes You can add words letting the user know where the hyperlink goes.
Back
<head> </head>
<body> </body>
Front
Organizes html document within the html tags. link, meta, title, and style go inside the head element.
Back
<ul> </ul>
Front
Creates an unordered list
Back
<input type="text"
Front
Creates a web form for user input.
Back
<img src="https://www.your-image-source.com/your-image.jpg" alt="Description of image">
Front
This is how we get an image to display on our webpage. An alt attribute is also added to describe the image if it fails to load.
We created a radio button that allows for two choices.
<label for="indoor"><input id="indoor" type="radio" name="indoor-outdoor"> Indoor</label>
<label for="outdoor"><input id="outdoor" type="radio" name="indoor-outdoor"> Outdoor</label><br>
Back
The hash symbol "#"
Front
If we don't know where to link yet we can use the "#" to create a dead link. Here is an example...
<p>Click here to view more <a href="#"" target="_blank">cat photos</a>.</p>