Quotes Modifications

change your .post blockquote to make your quote more attractive choose your own images in photobucket
.post blockquote {
background:#F5F8FA url(http://i1113.photobucket.com/albums/example/example/icon.png?attredirects=0) no-repeat scroll 0 0;;
border-color:#D7E8F0;
border-style:solid;
border-width:1px 1px 1px 20px;
color:#004276;
font-family:Consolas, "Courier New", Courier, mono, serif;
font-size:13px;
font-size-adjust:none;
font-stretch:normal;
font-style:normal;
font-variant:normal;
font-weight:normal;
line-height:16px;
margin:10px 0 10px 10px;
min-height:16px;
overflow:visible;
padding:28px 10px 10px;
width:90%;
}


READ MORE - Quotes Modifications

Adding Comment Text to Your HTML


Many people who attempt to put comments into their HTML code -- text
intended
for the reference of the developer but not to be displayed by the
browser --
get the syntax wrong, which can cause some browsers to mistakenly
display
part of the comment, or even worse, consider big chunks of the rest of
the document to be a comment and ignore them. This widespread confusion
about comment syntax is understandable given that HTML comment syntax is
a rather inscrutable outgrowth of SGML (Standard Generalized Markup
Language), a language devised for the formatting of government documents
which formed the basis of HTML. Maybe some of the same people who
devised
the 1040 tax forms also created the syntax rules for SGML, and hence
HTML.




While the popular conception is that comments open with <!--
and end with -->, this isn't quite completely
accurate.
Actually, comments start and end with "--", as in "-- This is a
comment --
",
but such comments can only occur within the proper SGML context, which
happens to be a block starting with <! and
ending with >. This ends up producing the
commonly
observed comment syntax, but it requires the additional condition that
you shouldn't
have "--" occur in the middle of the comment, because that would mark
the end of the comment. Actually, you can use "--" if it's followed
with another "--", since multiple comments are allowed. So the
following is legal:


<!-- This is a comment -- -- and here's more -->




But since you don't want to have to be so careful in counting your pairs
of dashes, it's better not to include any double dashes anywhere in a
comment line, so you can be sure the proper syntax is followed. This
can get to be a bit of a problem in commenting out JavaScript code
(recommended to hide it from older browsers), since "--" is frequently
encountered as a decrement operator. You'll have to use your best
judgment
in such cases about whether to rewrite your JavaScript code to avoid
this
operator, or live with a malformed "comment" that probably won't crash
the common browsers which are used to dealing with such bad syntax
anyway.
Just try not to use comments like <!-------------->
with so many dashes you're likely to lose count.




Another character that you should avoid within comments is the
greater-than
symbol (>). While this is legal within a comment, some browsers
don't
parse comments correctly, and they might think that a greater than sign
is
the end of the comment. So avoid it, though this may pose a problem
both
in JavaScript code and when you're "commenting out" some HTML markup
you're
temporarily removing from your page.




Another flawed syntax sometimes used is --!> as
the ending sequence of a comment. This is not the correct syntax; no
exclamation point is supposed to be at the end of the comment.
Technically,
the ! sign is here being interposed between the comment's closing "--"
and the
SGML block-ending ">", and its effect is undefined. Many browsers
(perhaps
most) will interpret this as the author intended, as the end of a
comment,
but there may be some that fail to so interpret it, so don't do it this
way!




If you use any automated program to generate HTML code, such as a
WYSIWYG
editor or a program that generates HTML from a spreadsheet or database,
watch out for malformed comments these programs may insert;
unfortunately,
the authors of such software sometimes get the comment syntax wrong and
inflict this on all their users.




NOTE: One of the many ways HTML 5.0 "dumbs down" the standards
is that it has dropped all attempts to comply with SGML rules, and
instead
adopts simplified comment syntax rules that don't include many of these
complexities; comments are simply delimited by <!-- ...
-->

as most people mistakenly believed them to be. (In general, the
developers of the
HTML 5.0 standard seem to have adopted the "If all the idiots mistakenly
believe
something to be so, then make it so in the new standard!")

READ MORE - Adding Comment Text to Your HTML

Ten Tips Writing Article in Your Blog

Here are ten tips that help me with my blog writing.

  1. Make your opinion known
  2. Link like crazy
  3. Write less
  4. 250 Words is enough
  5. Make Headlines snappy
  6. Write with passion
  7. Include Bullet point lists
  8. Edit your post
  9. Make your posts easy to scan
  10. Be consistent with your style
  11. Litter the post with keywords

1. Make your opinion known
People like blogs, they like blogs because they are written by people and not corporations. People want to know what people think, crazy as it sounds they want to know what you think. Tell them exactly what you think using the least amount of words possible.

2. Link like crazy.
Support your post with links to other web pages that are contextual to your post.

3. Write Less
Give the maximum amount of information with the least amount of words. Time is finite and people are infinitely busy. Blast your knowledge into the reader at the speed of sound.

4. 250 is enough
A long post is easier to forget and harder to get into. A short post is the opposite.

5. Make Headlines snappy
Contain your whole argument in your headline. Check out National newspapers to see how they do it.

6. Include bullet point lists
We all love lists, it structures the info in an easily digestible format.

7. Make your posts easy to scan
Every few paragraphs insert a sub heading. Make sentences and headlines short and to the point.

8. Be consistent with your style
People like to know what to expect, once you have settled on a style for your audience stick to it.

9. Litter the post with Keywords.
Think about what keywords people would use to search for your post and include them in the body text and headers. make sure the keyword placement is natural and does not seem out of place.

10. Edit your post
Good writing is in the editing. Before you hit the submit button, re-read your post and cut out the stuff that you don’t need.

I hope you enjoyed my tips for writing a blog post – feel free to share your own blog writing tips below.



READ MORE - Ten Tips Writing Article in Your Blog