Editab..
Archives : February-2015
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)..
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 ..
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 ..
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 ..
Sidebars are used to break up a website. They can be used for a variety of purposes, for example news articles, social network feeds ..
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 ..
Basic..
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> ..
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> ..