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

Friday, 31 May 2013

0

How to Align Images in Html

  • Friday, 31 May 2013
  • 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