Home DecoratingOrganizationCraftsCandle MakingJewelry MakingScrapbookingFashion Design & Sewing & SewingStitcheryGraphic DesignWeb DesignCooking & BakingHousekeeping & CleaningBudget & Finance
I want to know what YOU want to learn!
Let me know by clicking here to leave your request.

Leave a Request

Basic HTML Tags

03/25/2009
Filed In: Web Design
Add
HTML (Hypertext Markup Language) is the language that is used to create web pages. How is this useful for the everyday person who doesn’t want to be a web designer? Well, if you’re interested in using MySpace, LiveJournal, creating a Blog (on Blogspot, TypePad, etc.) then having a little bit of basic HTML knowledge will allow you to do a lot more and personalize your space the way you really want to.

I am personally a freelance web designer and developer so I am fully aware of the advantages that come with knowing HTML. However, this short tutorial will be for those who do not have a desire to be a full-on web designer, but would like to know enough to be a little dangerous. :)

Links:

  • Example: DIY Rocks
  • Code:

    <a href="http://www.queenofdiy.com">DIY Rocks</a>

Images:

  • Example:

    Basic HTML Tags
  • Code:

    <img src="http://imgurl.jpg"/>

Linking Images:

  • Example:

    HTML For Beginners
  • Code:

    <a href="http://www.queenofdiy.com"><img src="http://imgurl.jpg"/></a>

Line Break:

  • Example:

    line one
    line two
  • Code:

    <br/>

Paragraph:

  • Example:

    Paragraph 1

    Paragraph 2

  • Code:

    <p>Paragraph 1</p>
    <p>Paragraph 2</p>

HTML Document:

  • Code:

    <html>
    <head>
    <title>Title Goes Here</title>
    </head>
    <body>
    Body Text Goes Here
    </body>
    </html>

Italic Text:

  • Example: text goes here
  • Code:

    <i>text goes here</i>

Bold Text:

  • Example #1 (Preferred Method): text goes here
  • Code:

    <strong>text goes here</strong>
  • Example #2: text goes here
  • Code:

    <b>text goes here</b>

Underline Text:

  • Example: text goes here
  • Code:

    <u>text goes here</u>

Strike Through Text:

  • Example: text goes here
  • Code:

    <strike>text goes here</strike>

Bullet List:

  • Example:

    • List Item #1
    • List Item #2
    • List Item #3
  • Code:

    <ul>
    <li>List Item #1</li>
    <li>List Item #2</li>
    <li>List Item #3</li>
    </ul>

Numbered List:

  • Example:

    1. List Item #1
    2. List Item #2
    3. List Item #3
  • Code:

    <ol>
    <li>List Item #1</li>
    <li>List Item #2</li>
    <li>List Item #3</li>
    </ol>
So there you have the VERY BASIC tags in HTML. Most people who don’t really want to go beyond just knowing a little bit for their MySpace or blog won’t really need to know more than just the tags above. However, if you’d like to know anything else, please feel free to comment!

You May Also Like...

Did You Like This Post?
QueenOfDiY FeedSubscribe to the QueenOfDIY RSS Feed to get the latest updates from this site!
Share
Share/Bookmark
3 Comments | (Add Yours)
  • #1
    Raymond Berg
    March 27, 2009
    I'm glad you're sharing this information with people. One of my biggest goals is to help the average person a little more knowledgeable about "how the Internet works".
  • #2
    Sarah
    March 27, 2009
    Thanks! Yeah, I think even the average person who doesn't necessarily want to be a web designer can still benefit from knowing a little HTML with all of the blogging and social networking that goes on these days. It comes in really handy to know! :)
  • #3
    Marilyn
    June 25, 2009
    Now I think I know how people in the Land of Blog, go back in and strike through text. I have modified pictures by changing numbers, but that was just trial and error!. Thanks for your help. Marilyn’s latest blog post: Three days, three trips
Submit
TwitterFacebookMyspaceFlickrYouTubeRSS Feed
Share/Bookmark