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

Blog News
BlogNewsWebCreatorBGКакво е Интернет?
BlogNewsWebCreatorBGNews 1
BlogNewsWebCreatorBGNews 2
BlogNewsWebCreatorBGNews 3
BlogNewsWebCreatorBGNews 4
BlogNewsWebCreatorBGNews 5
BlogNewsWebCreatorBGNews 6
Learning HTML add div and ul li hyperlinks

Now we need to add header logo and navigation menu!
Between tag <header> and </header> put this code
<div class="logo"> <h2> welcome to webcreator bg </h2> <small>HTML 5 First webpage Toturial</small>
and between <nav> and </nav> put this code
<ul>
<li><a href="#">Home </a></li>
<li><a href="#">Downloads </a></li>
<li><a href="#">Abouts US</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
We need now some stylesheed to look good!
The HTML CODE must be like this now:
<!DOCTYPE html>
<html lang="en">
<head>
<style> { CODE HERE }
</style>
<meta charset="utf-8">
<title> WebCreatorBG HTML5 BASIC </title>
</head>
<body>
<header>
<div class="logo"> <h2> welcome to webcreator bg </h2> <small>HTML 5 First webpage Toturial</small>
</div>
</header>
<nav>
<ul>
<li><a href="#">Home </a></li>
<li><a href="#">Downloads </a></li>
<li><a href="#">Abouts US</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</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>
NEXT CHAPTER