Web Design and Development (Implementation: HTML) Flashcards
What does HTML stand for?
Hyper Text Mark-Up Language
What is displayed at the start of the document, to tell the computer that it is a HTML file?
[!DOCTYPE html]
How do we start and end a tag?
[tag] and [/tag]
What does the [title] tag do?
The [title] tag is used to display the name of the webpage (what appears in the tab of the page when it is run)
What does the [body] tag do?
The [body] tag is used to display all of the content that the sees when they use the webpage (eg. text, images, videos, hyperlinks)
What are the tags used to introduce text?
[p] [/p] (paragraph)
[h1] [/h1] (heading)
Which tag is used to style on specific piece of text?
[div] [/div]
What does the [p] tag do?
The [p] tag is used to show that there is a new paragraph of text
What does the [h1] tag do?
The [h1] tag is used to create a heading on the page
How do we construct a URL tag?
[a href=”LINK”] LINK TEXT [/a]
This would display “LINK TEXT” and would lead to “LINK”
How do we construct an image tag?
[img src= “IMAGE LINK.jpeg” alt=”DESCRIPTION”]
This would display an image called “IMAGE LINK.jpeg”
How can we edit the size of an image?
We can edit the size of an image by adding:
[… height=”X” weight=”Y”]
What does the [head] tag do?
The [head] tag displays all relevant information about the webpage such as links to CSS or JavaScript files
What does the [html] tag do?
The [html] tag starts and end the HTML document