1.3.4 Web Technologies (Chp 10) Flashcards
1
Q
HTML
A
- Hyper Text Markup Language
- The language that web pages are written in.
- allows a browser to interpret and render a webpage for the viewer by describing the structure ad=nd order of the web page.
2
Q
A
All code written within these tags are interpreted as HTML
3
Q
<h1></h1>
A
Different header sizes
4
Q
<p></p>
A
paragraph
5
Q
A
title
6
Q
<a> Link text</a>
A
hyperlink
7
Q
<ul>
| <li></ul>
</li></ul>
A
unordered list
item in the list
8
Q
CSS
A
- Cascading Style Sheets
- Language used to describe the style of a webpage
- can be external and linked, or internal
- whenever an external CSS is used, the link must be added to the header:
R: an external CSS is faster as it allows developers to control the layout of multiple web pages at once.