Blogging
Basic HTML
Want to start writing your own custom HTML code? in this tutorial you will see the basic HTML codes and what they mean and do.
HTML HEADING:
<h1>This is where your heading goes</h1>
-For every heading you must redo this HTML code hower changing the number to H2 and H3
HTML PARAGRAPHS:
<p>This is where paragraph goes.</p>
-For every new paragraph you must redo this HTML code.
HTML LINKS:
<a href=”http://www.yourlinkhere.co.uk”>This is a link</a>
HTML IMAGES:
<img src=”yourimage.jpg” width=”80″ height=”165″ />
-You can customize the dimensions of the height and width to suite your image.
