1.3.4 - Web Technologies Flashcards
What is HTML?
Hypertext Markup Language is a programming language that is used to write web pages.
What are the two sections of an HTML webpage?
Head and body.
What is the HTML syntax for a heading?
<h1>, <h2>, ... <h6>
In order of decreasing size.</h6></h2></h1>
What is the HTML syntax for a paragraph?
<p></p>
What is the HTML syntax for an image?
<img></img>
What is the HTML syntax for a hyperlink?
<a> Link text </a>
What is the HTML syntax for an ordered list?
<ol>
<li> Item 1 </li>
<li> Item 2 </li>
</ol>
What is the HTML syntax for an unordered list?
<ul>
<li> Item 1 </li>
<li> Item 2 </li>
</ul>
What does the div tag do?
Divides the page into separate areas which can be uniquely referred to by name.
What is the syntax for a named division?
div id = “page”
What is CSS?
Cascading style sheets is a language used to determine the style of the webpage.
What is embedded CSS?
Where CSS is placed inside the style tags directly into the HTML document.
What is external CSS?
Where CSS is written on a separate document and a link is provided in the header.
What is the syntax to link an external CSS sheet?
In terms of CSS, what is a class?
A way of applying a particular CSS style to multiple elements.