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

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

In HTML 5 we can use this layouts.
<header> - Defines a header Here we put our logo,slideshow,main description for our webpage.
<nav> - Defines a layout for hyperlinks or menu buttons must be here.
<main> - Main Section We put here main text for our website
<footer> - Defines a footer for a document,the end of the page
Now put this together inside the body tag,page must be like this.
Notes - when we open layout we must closed after this as you see.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> WebCreatorBG HTML5 BASIC </title>
</head>
<body>
<header>
Defines a header Here we put our logo,slideshow,main description for our webpage.
</header>
<nav>Defines a layout for hyperlinks or menu buttons must be here.
</nav>
<main>
Main Section We put here main text for our website
</main>
<footer>
Defines a footer for a document,the end of the page
</footer>
</body>
</html>

Also we have -
<section> - Defines a section in a document
<article> - Defines an independent self-contained article
<aside> - Defines content aside from the content (like a sidebar)
<details> - Defines additional details
<summary> - Defines a heading for the <details> element


Now we need to use some stylesheet (CSS)
NEXT CHAPTER