Easy HTML Every Blogger


As a Blogger  I know that every single blogger needs some knowledge of HTML someday, that’s why I decided to write this post and help you learn at least how HTML works! 
HTML, stands for HyperText Markup Language, and like any other language it has different rules and words ( or tags in this case). HTML is the predominant markup language for Web Pages, that is another reason to know HTML!

Every page starts with the tag and ends with , with this tag the browser knows where the site begins.
But that doesn’t really matters, because you are probably using a CMS so you juSt have to worry about the Tags you need to write you article, like Heading, Paragraph, Bold, Italic, etc.
  • Paragraph Tag: It is used just to start a new paragraph. Is tarts with <p> and ends </p>.
  • Bold: <b>Text Here</b>
  • Strong: <strong>Text Here</strong> (usually bold)
  • Underline: <u>Text Here</ul>
  • Italics: <i>Text Here</i>
  • Emphasized: <em>Text Here</em> (usually italics)
  • Strike: <strike>Text Here</strike>
  • Center: <center>This centers text on the page</center>
  • Teletype: <tt>teletype text</tt> (typewriter text)
  • Blockquote: <blockquotes>Your Text Here</blockquotes> (how this looks will depend on your CSS template but it usually indents your paragraph).
  • Basic Link <a href=”url”>link title</a> (where ‘url’ is the page you want to link to and ‘link title’ is the word/s that you want the link to say.
  • Email Link <a href=”mailto:EMAIL”></a> (where ‘EMAIL’ is the email address you want to be a link).
  • - <h1>An important heading</h1>
    - <h2>A slightly less important heading</h2>
    - <h3>A less important heading again</h3>
    - <h6>The smallest heading</h6>
I hope that this tags can help you with your blog articles