Posts

Only for Communication

Hello friends we are now live in another blog that is  TechBoss.in This block is only for latest Tech story and Technology . Please friends support us to make this blog successful. We want your support. So, Please come and join us here, TechBoss   
Image
3|Lists Unordered Lists <ul>   The unordered list is created with the <ul> element.   <li>   Each item in the list is placed between an opening <li> tag and a closing </li> tag. (The li stands for list item.)    
Image
3|Lists  Ordered Lists <ol>   The ordered list is created with the <ol> element.   <li>   Each item in the list is placed between an opening <li> tag and a closing </li> tag. (The li stands for list item.) Browsers indent lists by default. Sometimes you may see a type attribute used with the <ol> element to specify the type of numbering
3|Lists There are lots of occasions when we need to use lists. HTML provides us with three different types: ● Ordered lists are lists where each item in the list is    numbered. For example, the list might be a set of steps for    a recipe that must be performed in order, or a legal contract    where each point needs to be identified by a section    number. ● Unordered lists are lists that begin with a bullet point    (rather than characters that indicate order). ● Definition lists are made up of a set of terms along with the    definitions for each of those terms.
3 Lists Numbered lists Bullet lists Definition lists

Our 2nd Lesson

Image
So today we discuss about the link button and image adding on a web page Link Button Links are found in nearly all web pages. Links allow users to click their way from page to page. HTML links are hyperlinks. A hyperlink is a text or an image you can click on, and jump to another document. HTML Links - The target Attribute: _blank:  Opens the linked document in a new window or tab. _self:  Opens the linked document in the same frame as it was clicked (this is default). _parent:  Opens the linked document in the parent frame. _top:  Opens the linked document in the full body of the window. framename:  Opens the linked document in a named frame. HTML Link: 2.1 Coding: 2.2 Output: Image As A Link: 2.1 Coding: 2.2 Output: Image Addition on a webpage: 3.1 Coding: 3.2 Output: Summary: Use the HTML a element to define a link. Use the HTML href attribute to define the link address. Use the HTML target a
Image
Our Next Lesson will be   How to add an image and a link button on a web page Image Link Button By  Animesh