Module 4 Flashcards
Give an example to change the color font in HTML.
<p><font>Green text.</font></p>
What attributes can be used in the font tag to change the font and size?
face and size attribute.
What the tags <b>, <i> do?</i></b>
Makes text bold, italic, and undelined.
What are the seven main components to any web browser?
- User Interface
- Browser Engine
- Rendering Engine
- JavaScript Interpreter
- Networking
- Data Persistence
- UI Backend
What is the Browser engine?
The part of the browser responsible for organizing actions between the UI and Rendering Engine.
What the Rendering Engine does in a browser?
It intreprets HTML code visually.
What is the JavaScript Interpreter in a browser?
A program that takes the JavaScript code, parses it, executes it, and returns the results.
What is Data Persistence in a browser?
The cached files and cookies.
What is UI Backend in a browser?
The interaction of the browser with the operation system to display several elements of the page, like drop down boxes and some icons on the window (close, maximize, and minimize buttons).
What main component of the browser is responsible for creating a DOM?
The Rendering Engine.
Give an example of the <style> tag</style>
<style>
p {color:red;}</style>
What the <div> tag does?
Define a division or a section in an HTML document.
How the <div> tag can stylize its content?
Using the style attribute.
How is called a tag inside another?
Nested tag.
What is a Style Sheet?
A central place to store data about how a page will appear and how it will behave.
What does CSS stand for?
- Cascading styling sheets
- Cascade styling sheets
- Cascading Style Sheets
- Cascade Style Sheets
- Cascading Style Sheets
What are the three itens necessary to style in CSS?
Selector, property and value.