Web Design Flashcards
What are search engines?
They are websites which allow you to search up certain words and it gives you websites which may relate to your search
What does URL stand for?
Uniform Resource Location
What does HTML stand for?
HyperText Markup Language
What kind of brackets does HTML use?
Triangular brackets (<>)
How do you add bullet points in HTML?
You start with <ul>,then for every thing you list you open and close with <li> </li> and finish the list with </ul>.
What does a HTML bracket have at the end to symbolise its finish?
It will have a slash to close it. Example: <p> Hello </p>
How do you add a numbered list in HTML?
You start with <ol>, then for every thing you list you open and close with <li> </li> and finish the list with </ol>.
What does <p> </p> mean?
Paragraph
What does <body> </body> tag mean in HTML?
It defines the body of the code.
What does <h1> up to <h6> mean?
Headings
What does CSS mean?
Cascading Style Sheets
What is the biggest heading?
<h1>
</h1>
What is the smallest heading?
<h6>
</h6>
What does <style> </style> mean?
It allows you add code which changes the look of your text and page (eg - background colour, font family)
What is <br></br>
Line break