<?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 1 Solution and Discussion]]></title><description><![CDATA[<pre><code>Assignment No. 01
</code></pre>
<p dir="auto">Semester: Fall 2019<br />
CS202: Fundamentals of Front-End Development	Total Marks: 20<br />
Lectures Covered: 1 to 9<br />
Due Date: Nov 14, 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">Note: You have to upload .html file which will have code of HTML. Assignment in any other format (extension) will not be accepted and will be awarded with zero marks.</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 Image Tag, Table tags and HTML Forms<br />
•	Style the tags mentioned above</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 1 - 9.<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">Cyberian</a></p>
<p dir="auto">Guidelines:</p>
<p dir="auto">Code should be properly indented.<br />
You can use the following tools/software:<br />
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, <a href="cs202@vu.edu.pk">contact at</a></p>
<p dir="auto">Assignment Statement:</p>
<p dir="auto">Suppose you have been hired as a web developer in an online educational institution to develop a web page for student’s support system using which students can report their issues like email related issues, password issues, LMS related issues etc. Your web page should be like sample web page as given below.</p>
<p dir="auto">Sample Web Page:</p>
<p dir="auto"><img src="/assets/uploads/files/1573726350867-2ce8b7bc-5a8f-4666-8027-62ed992dd807-image.png" alt="2ce8b7bc-5a8f-4666-8027-62ed992dd807-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Solution Instructions:<br />
•	You are required to use image <a href="https://vulms.vu.edu.pk/Courses/CS202/Downloads/Student_support_system.jpg" target="_blank" rel="noopener noreferrer nofollow ugc">“Student_support_system.jpg”</a>, image URL is given below.<br />
<a href="https://vulms.vu.edu.pk/Courses/CS202/Downloads/Student_support_system.jpg" target="_blank" rel="noopener noreferrer nofollow ugc">Link</a><br />
•	Use basic HTML and CSS tags as required,  which you have learnt till Lecture 9 to design your web page as sample page.<br />
•	You also have to use HTML Table and HTML Form tags to design sample web page.</p>
<p dir="auto">BEST OF LUCK!</p>
]]></description><link>https://community.secnto.com//topic/568/cs202-assignment-1-solution-and-discussion</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 19:59:41 GMT</lastBuildDate><atom:link href="https://community.secnto.com//topic/568.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 14 Nov 2019 10:14:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to CS202 Assignment 1 Solution and Discussion on Tue, 03 Dec 2019 13:22:05 GMT]]></title><description><![CDATA[<p dir="auto">Solution Code</p>
<pre><code>
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;style&gt;
	#nav 
	{
	 display:block;
	 padding:5px; 
	 border-width:0.5px;
	 width:500px;
	  } 
&lt;/style&gt;
	&lt;title&gt;&lt;/title&gt;
&lt;/head&gt;

	
&lt;body style="background-color:powderblue; align: center;"&gt;
&lt;center&gt;
&lt;img src="Student_support_system.jpg"&gt; 


&lt;form&gt;
	
 
	&lt;table &gt;
		&lt;tr&gt;
		&lt;td&gt; Student Name: &lt;/td&gt;
		&lt;td&gt; &lt;input type="text" name="stdname"&gt; &lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
		&lt;td&gt; Roll No: &lt;/td&gt;
		&lt;td&gt; &lt;input type="text" name="rollno"&gt; &lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
		&lt;td&gt; Mobile No: &lt;/td&gt;
		&lt;td&gt; &lt;input type="text" name="mobileno"&gt; &lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;Choose type of Problem:&lt;/td&gt;
			&lt;td&gt;
				 &lt;input type="radio" name="issue" checked&gt; Email realted Issue&lt;br&gt;
				  &lt;input type="radio" name="issue" &gt; LMS related Issue&lt;br&gt;
				  &lt;input type="radio" name="issue" &gt; Password related Issue&lt;br&gt;
				  &lt;input type="radio" name="issue" &gt; Exam related Issue&lt;br&gt;
				  &lt;input type="radio" name="issue" &gt; Result related Issue&lt;br&gt;
				  &lt;input type="radio" name="issue" &gt; Other  
			&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;Comments:&lt;/td&gt;
			&lt;td&gt;&lt;input type="text" multiple name="Comments" style="width: 300px; height:100px;"&gt;
  
  		&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;br&gt;
		&lt;td&gt;&lt;/td&gt;
			&lt;td &gt; &lt;input type="submit" style="width:100px;" value="Submit" style="";&gt;&lt;/td&gt;
		&lt;/tr&gt;

  &lt;/table&gt;
  

&lt;/form&gt; 

&lt;/center&gt;

&lt;/body&gt;
&lt;/html&gt;
</code></pre>
]]></description><link>https://community.secnto.com//post/2135</link><guid isPermaLink="true">https://community.secnto.com//post/2135</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Tue, 03 Dec 2019 13:22:05 GMT</pubDate></item><item><title><![CDATA[Reply to CS202 Assignment 1 Solution and Discussion on Thu, 14 Nov 2019 10:16:33 GMT]]></title><description><![CDATA[<p dir="auto"><a href="https://drive.google.com/file/d/1OnVpUZI7KIqOG0xsbhYZuQ2ieBVDQLiB/view" target="_blank" rel="noopener noreferrer nofollow ugc">Solution File</a></p>
]]></description><link>https://community.secnto.com//post/1539</link><guid isPermaLink="true">https://community.secnto.com//post/1539</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Thu, 14 Nov 2019 10:16:33 GMT</pubDate></item><item><title><![CDATA[Reply to CS202 Assignment 1 Solution and Discussion on Thu, 14 Nov 2019 10:16:05 GMT]]></title><description><![CDATA[<p dir="auto"><a href="https://youtu.be/x9rYPAKn2l8" target="_blank" rel="noopener noreferrer nofollow ugc">https://youtu.be/x9rYPAKn2l8</a></p>
]]></description><link>https://community.secnto.com//post/1538</link><guid isPermaLink="true">https://community.secnto.com//post/1538</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Thu, 14 Nov 2019 10:16:05 GMT</pubDate></item><item><title><![CDATA[Reply to CS202 Assignment 1 Solution and Discussion on Thu, 14 Nov 2019 10:15:51 GMT]]></title><description><![CDATA[<pre><code>&lt;!DOCTYPE html&gt;

&lt;html&gt;

&lt;head&gt;

&lt;title&gt;dcXXXXXXX&lt;/title&gt;

&lt;meta charset=“UTF-8”&gt;

&lt;/head&gt;

&lt;body BGCOLOR="#ADD8E6"&gt;

&lt;img src="https://vulms.vu.edu.pk/Courses/CS202/Downloads/Student_support_system.jpg" style=“ width;100%”&gt;

&lt;form action=“dcXXXXXXX.html”&gt;

&lt;table align=center&gt;

&lt;tr&gt;

&lt;td&gt;

Student Name:

&lt;/td&gt;

&lt;td&gt;

&lt;input type=“text” name=“Name”&gt;

&lt;/td&gt;

&lt;/tr&gt;

&lt;tr&gt;

&lt;td&gt;

Roll No:

&lt;/td&gt;

&lt;td&gt;

&lt;input type=“text” name=“Roll_number”&gt;

&lt;/td&gt;

&lt;/tr&gt;

&lt;tr&gt;

&lt;td&gt;

Mobile No:

&lt;/td&gt;

&lt;td&gt;

&lt;input type=“text” name=“Mobile_number”&gt;

&lt;/td&gt;

&lt;/tr&gt;

&lt;tr&gt;

&lt;td&gt;

Choose type of Problem:

&lt;/td&gt;

&lt;td&gt;

&lt;input type="radio" name="Email related Issue" checked&gt; Email Related Issue&lt;br&gt;

&lt;input type="radio" name="LMS related Issue" &gt; LMS related Issue&lt;br&gt;

&lt;input type="radio" name="Password related Issue"&gt; Password related Issue&lt;br&gt;

&lt;input type="radio" name="Exam related Issue" &gt; Exam related Issue&lt;br&gt;

&lt;input type="radio" name="Result related Issue" &gt; Result related Issue&lt;br&gt;

&lt;input type="radio" name="other"&gt; Other&lt;br&gt;

&lt;/td&gt;

&lt;/tr&gt;

&lt;tr&gt;

&lt;td&gt;

Comments:

&lt;/td&gt;

&lt;td&gt;

&lt;textarea rows="5" cols="35" name="comment"&gt;&lt;/textarea&gt;

&lt;/td&gt;

&lt;/tr&gt;

&lt;td&gt;&lt;/td&gt;

&lt;td&gt;

&lt;INPUT TYPE="SUBMIT" name=“submit” value=Submit&gt;

&lt;/td&gt;

&lt;/table&gt;

&lt;/form&gt;

&lt;/body&gt;

&lt;/html&gt;
</code></pre>
]]></description><link>https://community.secnto.com//post/1537</link><guid isPermaLink="true">https://community.secnto.com//post/1537</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Thu, 14 Nov 2019 10:15:51 GMT</pubDate></item><item><title><![CDATA[Reply to CS202 Assignment 1 Solution and Discussion on Thu, 14 Nov 2019 10:15:21 GMT]]></title><description><![CDATA[<p dir="auto"><a href="https://youtu.be/owFDRp32jbQ" target="_blank" rel="noopener noreferrer nofollow ugc">https://youtu.be/owFDRp32jbQ</a></p>
]]></description><link>https://community.secnto.com//post/1536</link><guid isPermaLink="true">https://community.secnto.com//post/1536</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Thu, 14 Nov 2019 10:15:21 GMT</pubDate></item></channel></rss>