Lists

The web site hold my reading notes in code 201.

Lists

list HTML provides us with three different types: ● Ordered lists are lists where each item in the list is numbered. ● Unordered lists are lists that begin with a bullet point (rather than characters that indicate order). ● Definition lists are made up of a set of terms along with the definitions for each of those terms.

You can put a second list inside an <li> element to create a sublist or nested list.

example


CSS\Boxes

the height and width properties

padding

property used to how to write it
border-width used to control the width  
of a border p.one {border-width: 2px;}  
border-style using the border-style  
property: solid, dotted,dashed,double,ridge p.two {border-style: dotted;}  
border-color You can specify the color of a  
border p.one {  
border-color: #0088dd;}    
padding allows you to specify how much space should appear between the content of an element and its border. p.example {padding: 10px;}
The border-image property applies an image to the border of any box. It takes a background image and slices it into nine pieces p.two {-moz-border-image: url(“images/dots.gif”) }

Array in Javascript

a list or a set of values that are related to each other.

2.The values are assigned to the array inside a pair of square brackets, and each value is separated by a comma. The values in the array do not need to be the same data type, so you can store a string, a number and a Boolean all in the same array.

let fruits = [‘Apple’, ‘Banana’] array

Each item in an array is automatically given a number called an index. This can be used to access specific items in the array.

ACCESSING & CHANGING VALUES IN AN ARRAY To access a value from an array, after the array name you specify the index number for that value inside square brackets.

You can change the value of an item an array by selecting it and assigning it a new value just as you would any other variable (using the equals sign and the new value for that item).


if statment

Back to home page