HTML Flashcards
How does a comment in HTML start and end?
<!-- -->
anchor element
<a></a>
What does an anchor element do?
Link to another page
Add the anchor text ‘link to another page’ to the anchor element. This will become the link’s text.
<a>link to another page</a>
What are block-line level elements?
Elements that appear on a new line
What is the function of the fieldset element?
Fieldset elements are used to group related inputs and labels together in a web form.
What does the action attribute indicate?
The action attribute indicates where form data should be sent.
What is the function of label elements?
Label elements are used to help associate the text for an input element with the input element itself.
What is the function of legend elements?
The legend element acts as a caption for the content in the fieldset element. It gives users context about what they should enter into that part of the form
<ul> stands for?
</ul>
unordered list
<li> stands for?
</li>
list
What is the basic structure to start building your webpage?
<!DOCTYPE html>
<html>
</html>