HTML Foundation Flashcards
(191 cards)
Does it matter if you have space between tags?
No, but it’s important to keep code neat so it’s easier to read for the coder.
What is the p tag?
The paragraph tag which is used to denote a paragraph of text.
What information within the head IS displayed on a page tab in a web browser?
Any text within the title tag.
What is coding?
Coding is writing code. Code is any computer language.
What is JavaScript?
JavaScript is a computer language which makes your web pages intelligent on the client side.
Why do we have opening and closing tags in HTML?
Tells the web browser the beginning and the end of a tag.
When you select ‘View Page Source’ .. what are you doing?
You are checking to see the code that created the web page.
What does HTML stand for?
HyperText Markup Language
What is the ‘DOCTYPE’ tag used for?
This tells the web browser which version of HTML code we’re using in the web page.
What does a forward slash / in a tag indicate?
The closing tag.
HTML is made up of small sections of code - what are those code sections called?
Elements.
Which tag closes a paragraph tag?
What is the purpose of the head element?
This element contains metadata (data about data).
What is a web browser?
A web browser is an application used to view web pages.
What is a markup language?
- A markup language specifies code for the presentation (formatting) of text i.e. the layout and style.
- The code used to specify the formatting are called tags.
- HTML is one example of a markup language.
What is tag nesting?
Tag nesting is where an element (opening and closing tags) is within another element.
What are the names of the two characters which are at the start and end of a tag?
Angle brackets.
When you use the image tag to add an image to the web page, is it embedding the image into the html file or pointing to where the image is stored?
Pointing to where the image is stored.
What is the purpose of the element?
The element tells the web page when the html code begins and ends.
What is the three purposes of the title element?
The title element:
- Defines a title in the browser tab
- Provides a title for the page when it is added to favorites
- Displays a title for the page in search engine results
What is a code editor?
A code editor is an application used to write code faster, by suggesting tags.
Which three types of application can be used to create web pages?
- Simple Text Editor 2. Code Editor 3. WYSIWYG
What is a WYSIWYG app?
WYSIWYG stands for What You See Is What You Get. It is a ‘point and click’ application which allows you to build websites without having to write code.
What does the opening html tag look like? And what does it do?
The html tag tells the web browser that this is a html/web page.