HTML BASICS Flashcards
What does HTML do?
Describes content and structure.
What does CSS do?
Controls the style and layout of multiple web pages all at once.
What does JavaScript do?
Controls the behaviour of the web.
What language is HTML?
Standard markup language for creating web pages.
What do HTML elements tell the browser to do?
How to display the content!
What is the HTML5 declaration?
The <!DOCTYPE> declaration they helps to display a web page properly.
What is a HTML element?
Everything from the start tag to the end tag:
<h1> My first Heading<h1>
</h1></h1>
What are empty elements?
HTML elements with no content
What does the <br></br> tag define?
Defines a line break, and is an empty element without a closing tag.
What do HTML attributes do?
They provide additional information about elements.
What does the <img></img> tag do?
Used to embed an image in a HTML page,
What does the scr attribute specify?
The path to the image to be displayed. (Location of image)