Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Friday, 31 May 2013

0

How to Adjust Images In To Different Sizes

  • Friday, 31 May 2013
  • able
  • <html>
    <body>

    <p>
    <img src="hackanm.gif"
    width="20" height="20">
    </p>

    <p>
    <img src="hackanm.gif"
    width="45" height="45">
    </p>

    <p>
    <img src="hackanm.gif"
    width="70" height="70">
    </p>

    <p>
    You can make a picture larger or smaller changing the values in the "height" and "width" attributes of the
    img tag.
    </p>

    </body>
    </html>
    Read More
    0

    How to Create Image Map In Html

  • able
  • <html>
    <body>

    <p>
    Click on one of the planets to watch it closer:
    </p>

    <img src="planets.gif"
    width="145" height="126"
    usemap="#planetmap">

    <map id="planetmap" name="planetmap">

    <area shape="rect"
    coords="0,0,82,126"
    alt="Sun"
    href="sun.htm">

    <area shape="circle"
    coords="90,58,3"
    alt="Mercury"
    href="mercur.htm">

    <area shape="circle"
    coords="124,58,8"
    alt="Venus"
    href="venus.htm">

    </map>

    <p><b>Note:</b> The "usemap" attribute in the img element refers to the "id" or "name" (browser dependant) attribute in
    the map element, therefore we have added both the "id" and "name" attributes to the map element.</p>

    </body>
    </html>
    Read More
    0

    How to Align Images in Html

  • able
  • <html>
    <body>

    <p>
    An image
    <img src="hackanm.gif"
    align="bottom" width="48" height="48">
    in the text
    </p>

    <p>
    An image
    <img src ="hackanm.gif"
    align="middle" width="48" height="48">
    in the text
    </p>

    <p>
    An image
    <img src ="hackanm.gif"
    align="top" width="48" height="48">
    in the text
    </p>

    <p>Note that bottom alignment is the default alignment</p>

    <p>
    An image
    <img src ="hackanm.gif"
    width="48" height="48">
    in the text
    </p>

    <p>
    <img src ="hackanm.gif"
    width="48" height="48">
    An image before the text
    </p>

    <p>
    An image after the text
    <img src ="hackanm.gif"
    width="48" height="48">
    </p>

    </body>
    </html>
    Read More
    0

    How To Open A Link In New Browser

  • able
  • open a link in new browser  window

    <html>
    <body>

    <a href="lastpage.htm" target="_blank">Last Page</a>

    <p>
    If you set the target attribute of a link to "_blank",
    the link will open in a new window.
    </p>

    </body>
    </html>
    Read More
    0

    Deleted and inserted text in html

  • able
  • <html>
    <body>

    <p>
    a dozen is
    <del>twenty</del>
    <ins>twelve</ins>
    pieces
    </p>

    <p>
    Most browsers will overstrike deleted text and underline inserted text.
    </p>

    <p>
    Some older browsers will display deleted or inserted text as plain text.
    </p>

    </body>
    </html>
    Read More

    Monday, 20 May 2013

    0

    What is HTML? What Do You Need To Learn HTML?

  • Monday, 20 May 2013
  • able
  • HTML is a language for describing web pages,it stands for Hyper Text Markup Language. HTML is not a programming language, it is a markup language.A markup language is a set of markup tags.HTML uses markup tags to describe web pageTo Learn HTML we use a plain text editor (like Notepad) to edit HTML. We believe this is the best way to learn HTML.However, professional web developers often prefer HTML editors like FrontPage or Dreamweaver, instead of writing plain text.
    Read More

    Download

    Subscribe