We have to devide body into 3 parts :
1.header
2.section
3.footer
Header contains heading parts,
Section contains article parts,
and Footer contains copyright part.
Basic Code :
<!DOCTYPE html>
<html>
<head>
<title>Web Designing Course Lesson1</title>
</head>
<body>
<header>
<hgroup>
<h1>Web Designing Course Lesson1</h1>
<h3>Learn HTML 5 and CSS 3</h3>
</hgroup>
</header>
<section>
<article>
<h2>This is my first article - Lesson1</h2>
<p>This is a Tvs Tree Technologies world-wide website,
In this we can learn different technologies</p>
<p>In this website you can learn front-end and back-end technologies</p>
</article>
</section>
<footer>www.tvstreetechnologies.blogspot.com</footer>
</body>
</html>
Output:
No comments:
Post a Comment