1.3.3 Web Technologies Flashcards
What is the purpose of
HTML | CSS | JavaScript
HTML - Used to define the content and structure of a web page. Uses tags.
CSS - Sets the formatting of the website (colours, layout etc.) Enables a consistent look to every page as style sheet is shared.
JavaScript - Adds the interactivity to pages. As well as validation on web forms
What three methods can be used to insert CSS into a webpage?
Inline - CSS is added directly into the tag.
Embedded – The CSS is added to the top of each HTML page.
External – All of the CSS is added to an external file and then linked to within each HTML page
List the 9 CSS formatting commands that you are expected to know.
background-color
border-color
border-style
border-width
color (font)
font-family
font-size
height
width
How is a class identified in HTML / CSS?
How is an ID identified in HTML / CSS?
What would be the HTML code to create a bullet point list with the values “Hello” and “World” in the list?
What would be the HTML code to create a numbered list with the values “Hello” and “World” in the list?
What HTML tags are used to embed JavaScript in an HTML page?
What HTML tags are used to embed CSS in an HTML page?
How would I add a link to the BBC home page using HTML code?
How would I add a 100x100 image called “smile.png” to an HTML page and set appropriate alternative text?
What is the HTML code to add a form to a page with a text box and a submit button?
What is the purpose of the div tag?
To group a section of HTML code together so they can be referred to as one identifier.
What are the three largest headings in HTML?
What is the purpose of the title tag, and where does it appear?
<title> HELLO WORLD </title>
This would appear in the tab name at the top of the web browser.