HTML Flashcards
What does HTML stand for?
Hyper Text Markup Language
What is HTML?
The language used to create webpage content
What is CSS?
The language used to style and format webpage content
What does CSS stand for?
Cascading Style Sheets
What is a web browser?
The programs used to view webpages
What is the HTML code for making paragraphs?
<p> </p>
What is the HTML code for making a large heading?
<h1> </h1>
What is the HTML code for making a small heading?
<h6> </h6>
What is HTML code for adding hyperlinks?
<a href = “…”> search </a>
What is the HTML code for breaking a line?
<br></br>
What is the HTML code that allows text to be added?
<body> </body>
What is the HTML code that allows you to change the font, colour and size of text?
<style>
</style>
What is the HTML code for making an unordered list?
<ul> </ul>
What is the HTML code for making an ordered list?
<ol> </ol>
What is the HTML code for listing items?
<li> </li>