Ict Reviewer
Ict Reviewer
CSS (Cascading Style Sheet) Even if a cell has no content, you should still use a <td> or
● Stylize the website <th> element to represent the presence of an empty cell
● Applies style to the web page elements otherwise the table will not render correctly.
● Targets various screen sizes to make web
pages responsive TABLE ATTRIBUTES
● Primarily handles the "look and feel” of a web ● Border: Used on both the <table> and <td>
page elements to indicate the width of the border in
pixels.
Javascript ● Bgcolor: Used to indicate background colors of
● Increase interactivity either the entire table or individual table cells.
● Adds interactivity to a web page
1
Jeuss Andrey S. King | ICT Reviewer
● Width: Used on the opening <table> tag to POSITION PROPERTY: Specifies the type of positioning
indicate how wide that table should be and, on method used for an element (static, relative, fixed,
some opening, <th> and <td> tags to specify the absolute or sticky).
width of individual cells. The value of this ● POSITION: ABSOLUTE: Absolute positioned
attribute is the width of the table or cell in pixels. elements are removed from the normal flow and
● Cellpadding / Cellspacing: The opening can overlap elements.
<table> tag could also use the cellpadding ● POSITION: RELATIVE: Is positioned relative to
attribute to add space inside each cell of the its normal position.
table, and the cellspacing attribute to create
space between each cell of the table. PSEUDO-CLASS: A pseudo-class is used to define a
● Colspan: Used on a <th> or <td> element and special state of an element.
indicates how many columns that cell should run ● Style an element when a user mouses over it
across. ● Style visited and unvisited links differently
● Rowspan: Used on a <th> or <td> element to ● Style an element when it gets focus
indicate how many rows a cell should span
down the table. LESSON 17: VERTICAL/SIDE NAVIGATION BAR
NAVIGATION BAR: Is a user interface element within a
LESSON 13: HTML MARQUEE webpage that contains links to other sections of the
MARQUEE: Is a scrolling piece of text displayed either website.
horizontally across or vertically down your webpage
depending on the settings. Step 1: Apply size, color to nav bar and set position to
absolute. Declare 0px for top and bottom edge.
MARQUEE ATTRIBUTES Step 2: Apply relative position to ul and remove list bullets
● Width using the list-style:none;
● Height Step 3: Apply text properties to an element.
● Direction: up, down, left, right Step 4: Apply hover effect to an element, changing the
● Behavior: scroll, slide, alternate bgcolor and text color.
● Loop: This specifies how many times to loop. Step 5: Apply absolute position to dropdown menu
Default value is infinite. (second ul element. Specify size and distance from the
● Bgcolor: This specifies background color in edge).
terms of color names. Step 6: Insert the code “display: none;” to nav ul ul to hide
the dropdown menu.
LESSON 16: NAVIGATION BAR Step 7: Type the code nav ul li: hover ul { display: block }.
NAVIGATION BAR This shows the dropdown menu after you hover your
● Is a Graphical User Interface (GUI) that helps mouse on li elements.
the visitors in accessing information.
● It is the UL element on a webpage that includes
links for the other sections of the website.
● It is mostly displayed on the top of the page in
the form of a horizontal list of links.
<NAV> TAG
● Represents a section of a page whose purpose
is to provide navigation links.
● It is used for declaring the navigational section
in HTML documents.
FLOAT PROPERTY
● The float CSS property places an element on
the left or right side of its container, allowing text
and inline elements to wrap around it.
● The element is removed from the normal flow of
the page, though still remaining a part of the
flow.
PADDING/MARGIN PROPERTY
● Margin is the space outside the element.
● Padding is the space inside the element.