BGtop n1top100 Гласувай за мен в BGTop100.com BGtop100 БГ Каталог-Класация

Blog News
BlogNewsWebCreatorBGКакво е Интернет?
BlogNewsWebCreatorBGNews 1
BlogNewsWebCreatorBGNews 2
BlogNewsWebCreatorBGNews 3
BlogNewsWebCreatorBGNews 4
BlogNewsWebCreatorBGNews 5
BlogNewsWebCreatorBGNews 6
Learning HTML 5 BASIC

Lets get some basic skills to create your own website with WebCreatorBG
First open Start Menu > Notepad < this is your place to write your code.
HTML 5 documents start very simple like this.
<!DOCTYPE > - The DOCTYPE declaration for HTML5
<html lang="en"> - HTML Start tag
<head> - Element is a container for metadata here you will put your stylesheet(CSS),Javascipts links,Title for your site,keywords,desciption all of this doesnt displayed on page this is only like Data Place!
<meta charset="utf-8"> - The character encoding declaration. <title> - Title for your Page write what you want example My First HTML 5
</title> Close Title tag.
</head> - Close Head tag.
<body> - Open a body tag here put all the code which you like to be displayed on the page.Remeber Head working for you Body working for all!
<h1>Hello,This is my first HTML5 Page!</h1> - This code here between <body> and </body> will be your webpage.
</body> - Close the body tag
</html> - Close HTML tag
Okay this will be your first HTML5 Page
<!DOCTYPE>
<html lang="en">
<head>
<meta charset="utf-8">
<title> WebCreatorBG HTML5 BASIC </title>
</head>
<body>
<h1> Hello,Word </h1>
</body>
</html>
Save AS index.html or something open and you will see new HTML5 Document File!
NEXT Chapter