Archives : April-2015

Home » Wiki

Download links are used when you want the user to be able to download the file they are clicking on as opposed to opening or navigating to that file.  The example below shows how the user is able to download an image by clicking on some text as opposed to the usual “right click -> ..

Read more

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

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

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

HTML links are hyperlinks. A hyperlink is an element, a text, or an image that you can click on, and jump to another document. In HTML, links are defined with the <a> tag: The href attribute specifies the destination address (http://www.mysite.com) The link text is the visible part.  Clicking on the link text, will send ..

Read more

Sidebars are used to break up a website. They can be used for a variety of purposes, for example news articles, social network feeds ..

Read more

An attribute defines a property for an element, consists of an attribute/value pair, and appears within the element’s start tag.  An element’s start tag may contain any number of space separated attribute/value pairs.  Attributes can be: When you use your tags you should do so in this order: <tag attribute=”value”>(content to be modified by the ..

Read more

An element in HTML represents some kind of structure or semantics and generally consists of a start tag, content, and an end tag. The following is a paragrap..

Read more

Basic HTML structure is based around 4 sets of tags which are needed for every HTML page. HTML <html></html> Head <head></head> Title <title></title> Body <body></body>   In this example, note everything falls between the HTML tags, the title appears within the head of the document and that the body comes after the head. Definition – <html> </html> ..

Read more