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 ..
Archives : January-2015
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> ..
Dreamweaver Template or .dwt files are a great way for people new to the world of web design to exercise maximum control over their sites. Where using CSS helps to control the look of your site, the .dwt file can give you control over some of the content or HTML. Particularly the elements which are constant ..