Even though you may never need to know any html to use wordpress it doesn’t hurt to know some of the basics. Occasionally, it is easier to make format changes using the html screen in wordpress if you actually know a little html. In any matter if you have a site or blog it doesn’t hurt to have a little html knowledge.
Basic Html Document Format
<html>
<head>
<title>Site Name Here (not visbile on page – this is the name that shows up in the browser tab)</title>
</head>
<body>
Visible website content goes here.
</body>
</html>
Heading Sizes<h1>Largest Heading</h1> <h2> . . . </h2> <h6>Smallest Heading</h6> |
Largest Heading. . .. . .. . .. . .Smallest Heading |
||||
Text<p>This is a paragraph</p> |
This is a paragraph (line break) (horizontal rule) |
||||
Text Styles<b>This text is bold</b> |
This text is bold This text is italic |
||||
Links, Images & Email<a href=”http://www.example.com/”>This is a Link</a> <a href=”http://www.example.com/”><img src=”URL” alt=”Alternate Text”></a> <a href=”mailto:webmaster@example.com”>e-mail link</a> |
This is a Link Image may be NSFW. Clik here to view. ![]() e-mail link |
||||
Unordered (Bullet) list<ul> Ordered (Numbered) list<ol> |
|
||||
Indented Definition<dl> |
|
||||
Tables<table border=”1″> |
Tables
|
||||
Special Characters< translates to < |
< translates to < > translates to > © translates to © |
||||
Other Elements<!– This is a comment –> <blockquote> <address> |
Address 1 Address 2 City |
Ref : w3schools.com