hey guys it's nassim and this is your first lesson of the html 5 & css3 ! you may ask yourself why he are the html5 and css3 togother in the same tutorial , that's because their like married or like brothers , html needs css to becaume pretty and css needs html to work . before you start you should have some basic skills in simplified html, css and javascript ( to make your web page smarter ) and i also recommend you to use these tools for the tutorial
- chrome browser
- notepad ++
now lets go !
the html5 file always is in this form :
<!doctype html>
<html lang="en">
</head>
<meta charset="utf-8" />
<title>
this is a title
</title>
</head>
<body>
body of webpage
</body>
</html>
1-(<!doctype html>)
2-the (lang="en") attribute is to tell the browser in which language is the page
3-the <meta charset="utf-8" /> is some extra crap that not required but recommended
4-"this is a title" is what appears at the title of your brwser tab on above for example : in the home page og a-lot-of-craap.blogspot.com you will find on above "a lot of crap"
4-"body of webpage" is what will be visible on your page
(i'll complete the lesson next time, working on "how to use blogger" now)
- chrome browser
- notepad ++
now lets go !
the html5 file always is in this form :
<!doctype html>
<html lang="en">
</head>
<meta charset="utf-8" />
<title>
this is a title
</title>
</head>
<body>
body of webpage
</body>
</html>
1-(<!doctype html>)
2-the (lang="en") attribute is to tell the browser in which language is the page
3-the <meta charset="utf-8" /> is some extra crap that not required but recommended
4-"this is a title" is what appears at the title of your brwser tab on above for example : in the home page og a-lot-of-craap.blogspot.com you will find on above "a lot of crap"
4-"body of webpage" is what will be visible on your page
(i'll complete the lesson next time, working on "how to use blogger" now)
This is good.You can find a lot of tutorial about html5 in wwww.learnhtml5today.blogspot.com
ReplyDelete