From Zero to Hero in 10 Minutes

Web design is one of the most popular career choices for the modern age, and can earn you between 40,000 and 60,000  per anum.

Learning the tools for building web pages isn’t as hard as you think,  and you can get your feet wet with this basic html guide.

The over arching framework for web design consists of three technologies, these combine to  form what we would recognise as a modern webpage.

HTML – Hyper Text Markup Language

This can also be referred to as the structure of the web page, It consists of <tags> which you markup your text with to tell the browser how to display it.

The following is the basic setup up for a page:

<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>

</body>
</html>