Archives : February-2015

Home » Wiki

A selection of horizontal navigation bar examples, if you plan on using any you will need to copy both the HTML and CSS into the correct places. The HTML goes in the main body of the document, while the CSS goes between the style tags in the head. 1) 2) 3)..

Read more

JavaScript (JS) is most commonly used as a client side scripting language, this means that JS is written into an HTML page. JavaScript and Java are completely different languages, both in concept and design.  JS was invented by Brendan Eich in 1995, and became an ECMA standard in 1997.  ECMA-262 is the official name, ECMAScript ..

Read more

Rollover images can be useful features in some websites, there are a couple of ways you can implement them into your website; the easiest way is to use Dreamweaver which inputs the HTML and JS. If you don’t want to use JS you can use pure HTML and CSS. Dreamweaver Rollovers Pure HTML & CSS ..

Read more

What is it? With CSS float, an element can be pushed to the left or right, allowing other elements to wrap around it. Float is often used with images, but it is also useful when working with layouts. How Elements Float Elements are floated horizontally, this means that an element can only be floated left ..

Read more

Drop-down navigation works by placing a new unordered list (<ul>) inside of another list. You can use drop-down navigation to nest your pages inside other options in the navigation bar as the example below shows.  If you wish to use any of the following examples in your work you will need to copy and paste ..

Read more

The <table> tag defines an HTML table. An HTML table consists of the <table> element and one or more <tr>, <th>, and <td> elements. <tr> a table row <th> a table header <td>  a table cell.   A more complex HTML table may also include: <caption> <colgroup> column group <col> column properties within a <colgroup> ..

Read more

Navigation refers to the system that allows visitors to a website to move around that site. Navigation is most often thought of in terms of menus, but links within pages, breadcrumbs, related links, pagination, and any other links that allow a visitor to move from one page to another are included in navigation. There are ..

Read more

Refers to the physical number of pixels displayed on a screen (such as 1280×1024). Unlike in print, display resolution does not refer to the number of pixels or dots per inch on a computer screen, as this can be changed by changing the resolution of the screen (which, of course, does not change the physical ..

Read more

This is a CSS document that is written in a separate, external document. The biggest advantage to using an external style sheet is that it can be linked to by multiple HTML/XHTML files (which means changes made to the style sheet will effect all the pages linked to it without having to change each page ..

Read more