Create a static Web
page that includes the basic structure of a valid HTML (not XHTML)
document and a CSS file.
Make sure to include
Name the Web page
Unit3.html
Link to the Unit3.css file used to style and layout the Web
page.
Within the structure of the Web page add other HTML elements
including at least:
Develop an external CSS to provide style, presentation, and layout to the HTML document.
Add style rules to Unit3.css to accomplish the following:
Validate the CSS style rules.
<!DOCTYPE html>
<html lang="en"> <!-- en = english -->
<head>
<meta charset=utf-8" />
<title>Newsletter</title>
</head>
<body>
<header>
<h1 align="center">This is the Header</h1>
<h4 align="center"> July 2018 Vol. 5 </h3>
</header>
<section>
<hr>
<center><img src="images/food.jpg" width="70%" height="370px"></center>
<h2 align="center"> Some Content </h2>
<p align="center"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>
</section>
<footer>
<hr>
<h3 align="center"> This is the Footer </h3>
<p align="right">
<a href="https://www.facebook.com"><img src="images/facebook.png" height="50px" width="50px"></a>
<a href="https://www.twitter.com"><img src="images/twitter.png" height="50px" width="50px"></a>
<a href="https://plus.google.com/discover"><img src="images/googleplus.png" height="50px" width="50px"></a>
<a href="https://in.pinterest.com"><img src="images/pinterest.png" height="50px" width="50px"></a>
</p>
</footer>
</body>
</html>
Output:- (The website looks like this)
Create a static Web page that includes the basic structure of a valid HTML (not XHTML)...