Website Flashcards
What is the purpose of
<!DOCTYPE html>
in html?
It tells the browser that you are using html so it will read your code accordingly.
What is the purpose of
<html> </html>
in html?
It starts and ends your web page. The <html> tag shows where your code starts and the </html> tag shows where your code ends.
Which are the two sections you have in the <html> code?
There are two sections, the <head> </head> section and the <body> </body> section.
What is the <head> </head> section used for?
This section will consist of the settings of the web page, such as meta tags, tab title, link to the external stylesheet, internal styling, etc.
What is the <body> </body> section used for?
This section will consist of all the content you would like to place in your web page.
What is a website?
A collection of related web pages saved under a single domain name, created by a single person or organisation.
What is a webpage?
A single page from a website, i.e. a single document.
What does URL stand for?
Uniform Resource Locator
What is a URL?
The URL (Uniform Resource Locator) is the address of a web page.
What is a hyperlink?
Text that when clicked will open another web page or website.
What is an internal hyperlink?
An internal hyperlink links one web page to another web page in the same website.
What is an external hyperlink?
An external hyperlink links your web page to a web page on another (different) website.
What is an image link?
An image that when clicked will open another web page or website.
What is the <title> </title> tag used for?
It displays the name you choose, usually the website name, in the tab.
What is the <style> </style> tag used for?
This is used for internal styling.