Tuesday, October 22, 2013

Basic HTML 5 introduction

Welcome to this very first html tutorial!
As you might know, HTML is a language used for developing webpages, and if you are new to this technology, don’t worry, you don’t need experience with programming at all, this tutorial is for beginners!!
Go ahead and make your very own first webpage, here is some code and a video!
First webpage code: (save in a html document using your favorite text editor by clicking save as..  and then “.html” file, then open with any web browser)
01<!DOCTYPE html>
02<html>
03    <head>
04        <title>My website</title>
05    </head>
06    <body>
07        <h2>THis is my first title</h2>
08        <p>Lorem ipsum</p>
09    </body>
10</html>
Video tutorial: