• WordPress
    • Why WordPress
    • WordPress Support
    • WordPress Websites
    • WordPress Web Hosting
  • Our Projects
    • WPAnnex
    • EmmanuelPress
    • ChrisCree.TV
    • New Media Profit Path
  • Get Your Domain

SuccessCREEations, Inc.

Guiding Your Business to Increased Income though Effective New Media Systems Online

  • Home
  • About
    • Talk About Us
    • Chris Cree
    • Examples of our Work
      • Dr. Mo – Learn to Win!
      • Allstate Insurance
      • Halo Models & Talent Group
      • HighCallingBlogs.com
      • MyHuntingandFishing.com
      • BuzzFoto
  • Services
    • Social Media
    • Websites
      • WordPress Support
      • WordPress Web Hosting
      • Domain Names
  • Blog
    • Archives
    • Site Map
    • Comment Policy
    • Tag Cloud
  • Contact
  • Topics
    • Blogging
    • Social Media
    • WordPress
      • Tips
      • Themes
      • Plugins
    • SEO
    • Tech Tips
    • Personal Growth
    • Misc
You are here: Home / Misc / 2 Easy Blogging Tricks to Learn Basic HTML Quickly

2 Easy Blogging Tricks to Learn Basic HTML Quickly

June 7, 2007 by Chris 11 Comments
Tweet

Some bloggers, especially new bloggers, don’t want to learn how to code html. I can understand that feeling.

There is so much to learn when we are first starting blogging it can feel a bit like taking a foreign language for some. From the very term Blog on down there are tons of new terms we bloggers use. Trackbacks, blogroll, pings, feeds, RSS, comment box, pages, blog post, categories, plugins, widgets, tags, seo – the list goes on and on.

And that doesn’t even get into the sometimes strange names of the different services and web sites that are useful to bloggers. WordPress, TypePad, Blogger, FeedBurner, Technorati, MyBlogLog, StatCounter, and Hit Tail are just a few that a blogger might run across.

It can feel overwhelming for sure. And the idea of having to learn HTML on top of all that other learning is keeping some folks from getting started unnecessarily.

If you are new to blogging, or are considering getting started I’m going to let you in on a little secret. Most of us didn’t know anything about HTML when we started either. We picked up along the way after we got started.

One of the things I love about blogging is that most of the blog publishing platforms make it so easy for the beginner to have a professional looking web site without them having to know any HTML to start.

So you can get started and pick up some basic coding skills along the way like I did because I am going to share two tricks that will help you begin to understand HTML as you blog.

The WYSIWYG Editor

If you aren’t comfortable working with HTML you are probably going to want to use a WYSIWYG editor. WYSIWYG stands for What You See Is What You Get.

The idea with WYSIWYG is what you enter will pretty much look like what you will get on the screen when you publish to your blog. The editor has buttons to make the basic HTML functions that look much like the familiar buttons on most word processing platforms.

That way you can highlight some text, click the B button and the proper code is inserted to make your text bold. Same thing for inserting hyperlinks, etc.

Now here is the trick.

With most WYSIWYG editors there is a button that will let you see the raw HTML code that is running in the background. The idea is to allow you to make tweaks to the code that aren’t covered by the editor.

You want to learn how to code that bold text? Click the raw code button.

There you will see the editor added one of two codes to your text. It either looks like <b>Bold Text</b> or <strong>Bold Text</strong> (HTML will make either of them into bold text, just to keep it interesting.)

Either one will produce Bold Text.

By switching back and forth between the WYSIWYG editor and the raw code editor you will quickly learn some of the basic HTML code.

I actually turn the WYSIWYG editor off completely and prefer to work in the raw code all the time. I do that partly because sometimes the editors can occasionally do funky things that I don’t want with the formatting. But partly it is a hold over from earlier versions of WordPress where it wasn’t so easy to switch between the two and see the raw code.

To turn your WYSIWYG editor off in WordPress, go to “Users–>Your Profile” and de-select the check box near the top that says “Use the visual editor when writing”. Don’t forget to hit the “Update Profile” button to save the change.

Then you will be working in the raw code mode all the time. The good news is that the editing buttons are still there for bold, italics, links and such. So you can either use them to enter your code or just type it in yourself.

As a note, if you are pulling your hair out because something just won’t format the way you think it should, take a look at the raw code. You will probably find there is a whole lot of extra stuff in there that shouldn’t be there.

This is especially likely to happen if you used a word processor to type up your blog post. Microsoft Word is notorious for adding strange formatting commands to the text that don’t work well in HTML.

To prevent that from happening, open up a text only editor such as Notepad, copy your text from Word into Notepad. Then copy it out of Notepad into your blog. Then you won’t add a bunch of random code in there.

You might think the extra step is a pain. But it is a whole lot less painful than trying to weed out all that extra code after it is in your blog. Trust me.

Look at HTML Source Code

Another trick to learning HTML code quickly is to take a look at the source code on various web sites.

I remember when I first started thinking, “It be cool if I could see how they did that” when I came across some good looking web site. I wanted to try to do that in my blog, but couldn’t figure out how.

Well that’s because I didn’t know how to view the source code.

Most web browsers will let you do that easily.

With FireFox, go to the tool bar at the top and find View–>Page Source. With Internet Explorer, go to View–>Source.

Either way it will open up a separate window for you with the raw HTML code in there.

It will probably look like complete gibberish at first. But as you compare the raw code to the way the web site looks in the other window, you can find the different sections that make up the different parts of the web page.

The trick is to find the part of the code which corresponds to the neat thing you want to do. I usually use the text I see on the screen as my landmarks to navigate through the raw code to find the piece of code that I’m interested in learning about.

There are some sites that hide their source code one way or another. That’s OK. Just skip that one and go on.

And over time you will start to learn basic HTML. I’m guessing it will happen more quickly than you might think!

Related Posts with Thumbnails
Print Friendly

SuccessCREEations.com runs on the Genesis Framework

Genesis Framework

The Genesis Framework empowers you to quickly and easily build incredible websites with WordPress. Whether you're a novice or advanced developer, Genesis provides the secure and search-engine-optimized foundation that takes WordPress to places you never thought it could go. It's that simple - start using Genesis now!

Check out these incredible features and wide selection of designs. With automatic theme updates and world-class support included, Genesis is the smart choice for your WordPress website or blog.

Or even Become a StudioPress Affiliate yourself.

Filed Under: Misc, Tech Tips Tagged With: HTML, SuccessCREEations, Tech Tips

Comments

  1. Carolyn Manning says:
    June 7, 2007 at 5:38 pm

    There’s one thing about HTML that I might add, Chris: http://www.w3schools.com/html

    I’ve used it now and then and the neat thing about the site is that it’s very simple and easy to understand, no matter your level.

    Reply
  2. Chris says:
    June 7, 2007 at 8:11 pm

    Good tip, Carolyn!

    They’ve got a good CSS Reference site too for folks looking for help with style sheets.

    Reply
  3. Carolyn Manning says:
    June 8, 2007 at 7:04 am

    The CSS site might have the answers to some tweaks I’ve been wanting to do to Thoughts. Thanks, Chris.

    Reply
  4. directory says:
    September 19, 2007 at 10:07 am

    Man, what a well set-up website!

    Reply
  5. Dan says:
    July 28, 2008 at 10:35 pm

    I like it and the background and colors make it easy to readt

    Reply
  6. xHTML Coding says:
    September 15, 2008 at 9:03 am

    HTML is pretty easy to figure out, but the Text Editor actually makes life easy for a lot of people.

    But, there are some huge problems with pasting stuff right from the notepad document to the text editor.

    Anyways, its very important to learn basic HTML and even more important to write clean code!

    Reply
  7. Willem says:
    September 28, 2008 at 5:24 pm

    Sentimental and nostalgic. Great.

    Reply
  8. Rush says:
    February 28, 2009 at 12:01 am

    Nice site! Big thanx to webmaster!o

    Reply
  9. Malcom says:
    February 28, 2009 at 11:38 am

    made it .All information on this site is represented for users. A site ise

    Reply
  10. Maggy says:
    April 24, 2009 at 5:51 am

    This is very interesting site…

    Reply

Trackbacks

  1. How to begin blogging and tweeting for nonprofit fundraising says:
    October 26, 2010 at 8:39 am

    [...] 2 easy blogging tricks to learn HTML quickly http://successcreeations.com/207/2-easy-blogging-tricks-to-learn-basic-html-quickly/ [...]

    Reply

Comment Policy: Your words are your own, so be nice and helpful if you can. Please, only use your real name and limit the number of links submitted in your comment. If in doubt, please take a moment to review our full Comment Policy before you click "Post Comment" so we don't mark your comment as spam.

Speak Your Mind Cancel reply

*

*

Sponsors

Scribe SEOsocialoomphGravity Forms Plugin for WordPress

Connect with Chris

  • Facebook
  • Google+
  • Linkedin
  • RSS
  • StumbleUpon
  • Twitter

ChrisCree.TV

ChrisCree.TV banner

High Calling Blogs

Work and God

Good Stuff

Local Guides

  • Austin
  • Memphis
  • Charlotte
  • Baltimore
  • El Paso
  • Milwaukee
  • Madison
  • Boston
  • Seattle
  • Nashville
  • Denver
  • Washington DC
  • Las Vegas
  • Louisville
  • Portland


 TwitterCounter for @ChrisCree 
Friend of Creative Coast Button
Blog Network:
Name:
SuccessCREEations
Topics:
Social Media, Blogging, WordPress
Join my network
Blog Networks

Did you notice how fast this site is?

SuccessCREEations is accelerated by the
MaxCDN Content Delivery Network

Return to top of page

Copyright © 2012 · Delicious Theme (heavily) customized by SuccessCREEations, Inc. on the Genesis Theme Framework · WordPress · Log in