<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[CS202 Assignment 2 Solution and Discussion]]></title><description><![CDATA[<p dir="auto">Assignment No. 02<br />
Semester: Fall 2019<br />
CS202: Fundamentals of Front-End Development	Total Marks: 20<br />
Lectures Covered: 8 to 15<br />
Due Date:<br />
Monday, December 2, 2019</p>
<p dir="auto">Instructions:</p>
<p dir="auto">Please read the following instructions carefully before submitting assignment. It should be clear that your assignment will not get any credit if:</p>
<p dir="auto">	The assignment is submitted after due date.<br />
	The submitted assignment does not open or file is corrupt.<br />
	Assignment is copied(partial or full) from any source (websites, forums, students, etc)</p>
<p dir="auto">Objective:</p>
<p dir="auto">The objectives of this assignment are:</p>
<p dir="auto">•	To learn and practice the basic HTML tags.<br />
•	Use of <img />, </p><table>, <div> and HTML Forms.<br />
•	Style the tags mentioned above .<p></p>
<p dir="auto">Note:</p>
<p dir="auto">•	This assignment is a Graded Assignment.<br />
•	The assignment submitted through email will not be accepted.<br />
•	This assignment is covering Lectures 8-15.<br />
•	For detail of topics in each lecture, see syllabus file given in download section of this course. The link of file is: <a href="https://vulms.vu.edu.pk/Courses/CS202/Downloads/CS202%20Mid%20Term%20Syllabus.pdf" target="_blank" rel="noopener noreferrer nofollow ugc">Link</a></p>
<p dir="auto">Guidelines:</p>
<p dir="auto">	Code should be properly indented.<br />
	You can use the following tools/software:<br />
o	Sublime, Netbeans, Adobe Dreamweaver , Notepad<br />
	You will not use any other software to make .html file</p>
<p dir="auto">For any query about the assignment, contact at <a href="mailto:cs202@vu.edu.pk" target="_blank" rel="noopener noreferrer nofollow ugc">cs202@vu.edu.pk</a>.</p>
<p dir="auto">Assignment Statement:</p>
<p dir="auto">Suppose you have been hired as a front-end designer to develop a one page website for an organization as shown below:</p>
<p dir="auto">Sample Web Page:<br />
<img src="https://i.imgur.com/JiUZY08.png" alt="97ee9902-cb57-4ded-a826-a46ae95316a7-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Solution Instructions:</p>
<p dir="auto">•	Use </p><div> / <table> element to develop this webpage.<br />
•	On the top, navigation bar is used.<br />
•	An image is used with 100% width and 600px height.<br />
•	In services section, Three divs or <td> are used with equal width.<br />
•	In the last section, 2 divs or </td><td> with equal width are used.<br />
•	You can use colors of your own choice.<br />
•	Use </td></table></div></div></table>]]></description><link>https://community.secnto.com//topic/726/cs202-assignment-2-solution-and-discussion</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 19:59:29 GMT</lastBuildDate><atom:link href="https://community.secnto.com//topic/726.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 03 Dec 2019 13:21:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to CS202 Assignment 2 Solution and Discussion on Tue, 03 Dec 2019 13:24:49 GMT]]></title><description><![CDATA[<p dir="auto">Solution Idea Code</p>
<pre><code>&lt;html&gt;
&lt;head&gt;
&lt;title&gt;CS202 Assignment no 2&lt;/title&gt;
&lt;style&gt;
body{
	padding:0;
	margin:0;
	width:100%;
}
#mynav{
	background-color:black;
	height:80px;
}
#mynav a:link, a:visited {
  background-color: red;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

#mynav a:hover, a:active {
  background-color: black;
}

#firstimage img{
	width:100%;
	height:600px;
	fill:cover;
	margin: 0px auto;
}
#serviceheading{
	padding-top:10px;
	padding-bottom:10px;
}
#serviceheading h2{
text-align:center;
}
.servicesection{
width:32%;
float:left;
padding-left:5px;
margin-bottom:5px;


}
.servicesection img{
	width:15%;
	height:100px;
	padding-left:80px;
	margin:2px;

}
.servicesection h2{
	margin: 5px 20px;
	
}
#banner1{
	background-color:#21E6E0;
}
#banner2{
	background-color:#F91912;
}
#banner3{
	background-color:#58F912;
}
#myfooter{
	width:99%;
	margin-top:5px;
	background-color:black;
	float:left;
	padding-bottom:100px;
}
#footer1{
	width:41%;
	margin-left:5px;
	float:left;
}
#footer1 h3{
color:Red;
padding-left:150px;
}
#footer1 p{
color:white;
}
#footer2{
	width:41%;
	margin-left:90px;
	float:left;
}
#footer2 h4{
	color:green;
	font-size:25px;
}
#btn{
	background-color:#F91912;
}
#btn:hover{
	background-color:green;
}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;form action=""&gt;
	&lt;div id="mynav"&gt;
	
	&lt;a href="Home.html"&gt;Home&lt;/a&gt;
	&lt;a href="service.html"&gt;Service&lt;/a&gt;
	&lt;a href="about.html"&gt;About&lt;/a&gt;
	&lt;a href="contactus.html"&gt;Contact us&lt;/a&gt;
	
	&lt;/div&gt;
	
	&lt;div id="firstimage"&gt;
	&lt;img src="banner.jpg" alt="Banner Image"&gt;
	&lt;/div&gt;
	&lt;div id="serviceheading"&gt;
	&lt;h2&gt;Service&lt;/h2&gt;
	&lt;div class="servicesection" id="banner1"&gt;
	&lt;img src="camera.PNG" alt="Banner Image"&gt;
	&lt;h2&gt;Photgraphy&lt;/h2&gt;
	&lt;p&gt;
	orem 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. 
	&lt;/p&gt;
	&lt;/div&gt;
	&lt;div class="servicesection" id="banner2"&gt;
	&lt;img src="video.PNG" alt="Banner Image"&gt;
	&lt;h2&gt;VideoGraphy&lt;/h2&gt;
	&lt;p&gt;
	orem 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. 
	&lt;/p&gt;
	&lt;/div&gt;
	&lt;div class="servicesection" id="banner3"&gt;
	&lt;img src="web.PNG" alt="Banner Image"&gt;
	&lt;h2&gt;Web Design&lt;/h2&gt;
	&lt;p&gt;
	orem 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. 
	&lt;/p&gt;
	&lt;/div&gt;
	&lt;div id="myfooter"&gt;
			&lt;div id="footer1"&gt;
			&lt;h3&gt;About Us&lt;/h3&gt;
			&lt;p&gt;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 
			&lt;/p&gt;
			&lt;/div&gt;
			&lt;div id= "footer2"&gt;
			&lt;h4&gt;Contact Us&lt;/h4&gt;&lt;br&gt;
			&lt;input type="text" placeholder="name"&gt;&lt;br&gt;&lt;br&gt;			
			&lt;input type="text" placeholder="Email Addres"&gt;&lt;br&gt;&lt;br&gt;			
			&lt;textarea rows="4" cols="50"&gt;			
			&lt;/textarea&gt;&lt;br&gt;&lt;br&gt;
			&lt;button id="btn"&gt; Press Me&lt;/button&gt;
			&lt;/div&gt;
	&lt;/div&gt;
	&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;

cs202 assignment solution with internal css in head section.html
Displaying cs202 assignment solution with internal css in head section.html.
</code></pre>
]]></description><link>https://community.secnto.com//post/2137</link><guid isPermaLink="true">https://community.secnto.com//post/2137</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Tue, 03 Dec 2019 13:24:49 GMT</pubDate></item><item><title><![CDATA[Reply to CS202 Assignment 2 Solution and Discussion on Tue, 03 Dec 2019 13:23:27 GMT]]></title><description><![CDATA[<p dir="auto"><a href="https://www.youtube.com/watch?v=nDsQpK_E6K0" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.youtube.com/watch?v=nDsQpK_E6K0</a></p>
]]></description><link>https://community.secnto.com//post/2136</link><guid isPermaLink="true">https://community.secnto.com//post/2136</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Tue, 03 Dec 2019 13:23:27 GMT</pubDate></item></channel></rss>