Create 2 documents for 2 different clients using the created /given template.(Write the contents on Theory Paper & Submit) Template : Header , Body , Footer The invoice header may contain : Your Business Name, Address, Telephone, Email, Website An invoice date & the word “Invoice” should be clearly mentioned at the top of the page
Answers
For example there is comment section from three reviewers. I have named the reviewers as Reviewer 1, Reviewer 2,Reviewer 3 along with their comments as
Comments from Reviewer 1 like that and so on. There are two html pages over here namely jtc_index.html and jtc_services.html along with 2 CSS files jtc_base.css and jtc_layout.css which are already provided as stated in the question.
The jtc_index.html contains a head tag where I have included the CSS files which are used for styling. The body contains three major tags <header> where I have placed the navigation link to both the pages as stated in the question.<aside> to store the reviewer comments and,<article> tag to store the content of the article that has to paragraphs. At the bottom of the tag there are details of the Jedds Tree Care in the <address> tag.
The jtc_services.html contains the details of the services provided.I have stated the services as Service 1 and Service 2 with the description field in paragraph <p> tags and finally in the bottom there is a <footer> tag to store the details and the address of Jedds Tree care.
The content of the html pages are as follows:
1. jtc_index.html
<html>
<meta charset="UTF-8">
<title>Jedds Tree Care</title>
<!--Name, Date-->
<head>
<link rel="stylesheet" type="text/css" href="jtc_base.css">
<link rel="stylesheet" type="text/css" href="jtc_layout.css">
</head>
<body>
<header>
<ul>
<li><a href="jtc_index.html">Home</a></li> <li><a href="jtc_services.html">Services</a></li>
</ul>
</header>
<aside>
<img src=" jtc_comments.png" alt="Comments"
align="middle">
<br>
<blockquote>
<p>Comment from Reviewer 1</p> <cite>— Reviewer 1</cite>
</blockquote>
<blockquote>
<p>Comment from Reviewer 2</p></blockquote>
<cite>— Reviewer 2</cite>
<blockquote>
<p>Comment from Reviewer 3</p></blockquote> <cite>— Reviewer 3</cite>
</aside>
<article>
<header>
<img src="jtc_photo1.png" alt="Jedds Tree Care" align="middle">
<header>
<p>First Paragraph will from SECOND section will be copied here</p>
<p>Second Paragraph will from SECOND section will be copied here</p>
<br>
<br>
<address>
<strong>Jedds Tree Care</strong><br>
201 Edward Avenue<br>
Lansing, MI 48930<br>
email:<a
href="[email protected]">[email protected]</a>
<br>
phone:517,555,4811 </address>
</article>
</body>
</body>