Wednesday 17 June 2015

28.

How to create and make HTML look good using notepad

The first step to writing HTML is to open up Notepad or Notepad++, type:

<html>

This creates the starting point for the HTML and defines what type it is. You can then start entering information based on what you are making the page for.
You can use tags such as <h1> to make titles look better and use <pre> to keep formatting in text making it look cleaner. Don't forget to close tags, for example </h1> and </pre>. Without doing this the rest of the document after the tag will be affected.

No comments:

Post a Comment