Posts

html- frames, iframes

Image
                                              HTML - FRAMES                          Html frames are used to divide our browser windows into multiple sections where each section can load a separate html document. A collection of frames in the browser window is called as frame set. The window is divided into frames in a similar way the tables are organized: into rows and columns. Disadvantages of Frames:                                                    There are few drawbacks with using frames, so it's never recommended to use frames in your web pages − Some smaller devices cannot cope with frames often because their screen is not big enough to be divided up. Sometimes your page wi...

Html - Text Links, Image Links, E-mail Links

Image
  HTML - TEXT LINKS   A webpage can contain various links that take you directly to other pages and even specific parts of a given page. These links are known as hyperlinks. Hyperlinks allow visitors to navigate between Web sites by clicking on words, phrases, and images. Thus you can create hyperlinks using text or images available on a webpage. Linking Documents A link is specified using HTML tag <a>. This tag is called  anchor tag  and anything between the opening <a> tag and the closing </a> tag becomes part of the link and a user can click that part to reach to the linked document. Following is the simple syntax to use <a> tag. <a href = "Document URL" ... attributes-list>Link Text</a> The target Attribute We have used  target  attribute in our previous example. This attribute is used to specify the location where linked document is opened. Following are the possible options − Sr.No Option & Description 1 _blank ...

html - lists

Image
  What is LISTS ? A list is a record of short pieces of information, such as people's names, usually written or printed with a single thing on each line and ordered in a way that makes a particular thing easy to find. For example,    A shopping list. A to-do lost. LISTS IN HTML HTML offers three ways for specifying lists of information. All lists must contain one or more list elements. The types of lists that can be used in HTML are : ul :  An unordered list . This will list items using plain bullets. ol :  An ordered list . This will use different schemes of numbers to list your items. dl :  A definition list . This arranges your items in the same way as they are arranged in a dictionary. The Unordered HTML List An unordered list starts with the “ul” tag. Each list item starts with the “li” tag.The list items are marked with bullets i.e small black circles by default. <!DOCTYPE html>  <html>  <body>  <h2>Grocery lis...