Skip to main content

Creating a Division to your to your Page

                                                          Creating a Division to your Page
<!DOCTYPE html>
<html>
<head><title>Web Page Divisions</title>
<meta charset= "utf-8">
</head>
<body>
<div id= "masthead">
<p> Masthead </p>
</div>
<div id= "top-navigation">
<p> Top Navigation </p>
</div>
<div id= "web-content">
<p> Web Content </p>
</div>
<div id= "bottom-navigation">
<p> Bottom Navigation </p>
</div>
<div id= "copyright-section">
<p> Copyright </p>
</div>
</body>
</html>
Sample Output:

Comments

Post a Comment