<?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[IT430 Assignment 1 Solution and Discussion]]></title><description><![CDATA[<p dir="auto">Re: <a href="/topic/550/it430-assignment-1-solution-and-discussion">IT430 Assignment 1 Solution and Discussion</a><br />
Assignment No. 01<br />
Semester Spring 2020<br />
IT430: E-Commerce	Total Marks: 15<br />
Due Date: 31-05-2020</p>
<p dir="auto">Objective<br />
The objective of this assignment is:<br />
o	To understand the basics of html tags<br />
o	To understand the basic concepts of creating tables using HTML tags<br />
o	To understand how to use interactive forms</p>
<p dir="auto">Instructions<br />
Please read the following instructions carefully before solving &amp; submitting assignment:<br />
It should be clear that your assignment will not get any credit (zero marks) if:<br />
o	The assignment is submitted after due date.<br />
o	The submitted assignment is other than .html.<br />
o	The submitted assignment does NOT open or file is corrupted.<br />
o	The assignment is not accepted via email in any case (whether it is the case of load shedding or internet malfunctioning etc.).<br />
o	The assignment is copied (from other student or ditto copy from handouts or internet).</p>
<p dir="auto">Uploading instructions<br />
o	For clarity and simplicity, you are required to Upload/Submit only .html file.</p>
<p dir="auto">Task: You have to write the HTML code to show the output as following screenshot. You have to write your own VU Id, Name; Father Name should be in text boxes. All the values in the table should be center aligned.<br />
Assignment No. 01<br />
Semester Spring 2020<br />
IT430: E-Commerce	Total Marks: 15<br />
Due Date: 31-05-2020</p>
<p dir="auto">Objective<br />
The objective of this assignment is:<br />
o	To understand the basics of html tags<br />
o	To understand the basic concepts of creating tables using HTML tags<br />
o	To understand how to use interactive forms</p>
<p dir="auto">Instructions<br />
Please read the following instructions carefully before solving &amp; submitting assignment:<br />
It should be clear that your assignment will not get any credit (zero marks) if:<br />
o	The assignment is submitted after due date.<br />
o	The submitted assignment is other than .html.<br />
o	The submitted assignment does NOT open or file is corrupted.<br />
o	The assignment is not accepted via email in any case (whether it is the case of load shedding or internet malfunctioning etc.).<br />
o	The assignment is copied (from other student or ditto copy from handouts or internet).</p>
<p dir="auto">Uploading instructions<br />
o	For clarity and simplicity, you are required to Upload/Submit only .html file.</p>
<p dir="auto">Task: You have to write the HTML code to show the output as following screenshot. You have to write your own VU Id, Name; Father Name should be in text boxes. All the values in the table should be center aligned.</p>
<p dir="auto"><img src="https://i.imgur.com/NcC1hsn.png" alt="faa52425-424f-4ff1-ac7f-5bea298ad694-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">GOOD LUCK</p>
]]></description><link>https://community.secnto.com//topic/1772/it430-assignment-1-solution-and-discussion</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 19:59:23 GMT</lastBuildDate><atom:link href="https://community.secnto.com//topic/1772.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 20 May 2020 10:55:10 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to IT430 Assignment 1 Solution and Discussion on Fri, 19 Jun 2020 07:47:27 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">Task: You have to write the HTML code to show the output as following screenshot. You have to write your own VU Id, Name; Father Name should be in text boxes. All the values in the table should be center aligned.</p>
</blockquote>
<p dir="auto"><a href="https://youtu.be/q-COnYfOu0U" target="_blank" rel="noopener noreferrer nofollow ugc">https://youtu.be/q-COnYfOu0U</a></p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html lang="en"&gt;
&lt;head&gt;
    &lt;meta charset="UTF-8"&gt;
    &lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&gt;
    &lt;title&gt;Document&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;center&gt;
    &lt;!-- &lt;center&gt; --&gt;
    &lt;p align="right" &gt;&lt;img src="logo.png" alt=""&gt;&lt;/p&gt;
     &lt;!-- &lt;img align="right" src="logo.png" alt=""&gt; --&gt;
    
    &lt;form action="#" method="post"&gt;
        &lt;p &gt;VU ID: &lt;input type="text" name="vid" id="vid" value ="BC123456"&gt; &lt;span style="color: red;" &gt;* BC123456&lt;/span&gt; &lt;/p&gt;
        &lt;p&gt;Name: &lt;input type="text" name="sname" id="sname" value ="Aamir Latif"&gt;&lt;span style="color: red;" &gt;* Aamir Latif&lt;/span&gt;&lt;/p&gt;
        &lt;p&gt;Father Name: &lt;input type="text" name="fname" id="fname" value ="Muhammad Latif" &gt;&lt;span style="color: red;" &gt;* Muhammad Latif&lt;/span&gt;&lt;/p&gt;
        &lt;table border="1" width="30%"&gt;
            &lt;tr&gt;
                &lt;th&gt;Semester&lt;/th&gt;
                &lt;th&gt;Degree&lt;/th&gt;
                &lt;th&gt;Subject&lt;/th&gt;
                &lt;th&gt;Grade&lt;/th&gt;
            &lt;/tr&gt;
            &lt;tr style="text-align:center" &gt;
                &lt;td&gt;Spring 2020&lt;/td&gt;
                &lt;td&gt;BSCS&lt;/td&gt;
                &lt;td&gt;IT430&lt;/td&gt;
                &lt;td&gt;A&lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/form&gt;
&lt;/center&gt;

&lt;/body&gt;
&lt;/html&gt;
</code></pre>
<p dir="auto"><img src="https://i.imgur.com/25f5SIX.png" alt="logo.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.secnto.com//post/4963</link><guid isPermaLink="true">https://community.secnto.com//post/4963</guid><dc:creator><![CDATA[cyberian]]></dc:creator><pubDate>Fri, 19 Jun 2020 07:47:27 GMT</pubDate></item></channel></rss>