Monday, 14 April 2014

WordPress Theme Development

This is the first part of our Web Design tutorials. I assume that you new to website design with absolutely no basics to what makes the websites work. Let's get started.

HTML

HTML (Hyper Text Markup Language) is the back-bone of every website out there. I will show you, from the ground up, how to create valid(?) HTML tags. Let's waste no time. I will be explaining how to code HTML using the following example:

<!DOCTYPE html>
<html>
      <head>
    </head>

    <body>
                <div class="wrapper">
                          <div class="header">
                          </div>
                </div>
   </body>
</html>

No comments:

Post a Comment