Encoding your own website takes some pre-planning but it is an ultimately rewarding and achievable task. Before you start, plan out the architecture and content of the site--what pages you will have, what order they'll go in and what text, images and videos will go on which pages.
You will use HTML, which stands for hypertext markup language. HTML is a set of instructions for a web browser that says, "Get this content, put it here and make it look like this."
Like any other language, HTML has a syntax and a vocabulary. The syntax is
Instructions
Encoding Web Pages
- 1
Open your web development software (see the Resources section for free and paid software options). Start a new document by selecting "File" and then "New." Save the document as index.html--this will be your home page.
2Open an tag at the very top and add a closing tag at the very end. You will code the web page in between these tags, which lets the web browser know you are coding in HTML.
3Open and close a
tag (use to close it). Information in the head will not display on the web page itself when viewed in a browser; instead it includes information about the web page. 4Within the opening and closing head tags, include whichever of these items make sense for your particular web page:
Open a
tag below the closing tag, and close the