Please Discuss here about this assignment.Thanks
Our main purpose here discussion not just Solution
Students having same subject can start discussion here to solve assignment, GDB & Quiz and can clear their concepts until solution is provided.
P.S: Please always try to add the discussion in proper format title like “CS101 Assignment / GDB No 01 Solution & Discussion Due Date: ___________”
Then copy Questions from assignment file and paste in Discussion.
+ http://bit.ly/vucodes (For Assignments, GDBs & Online Quizzes Solution)
+ http://bit.ly/papersvu (For Past Papers, Solved MCQs, Short Notes & More)
+ Click Here to Search (Looking For something at vustudents.ning.com?)
+ Click Here to Join (Our facebook study Group)
cs202 assignment 1 solution 2020 by Vu Boss#vu #cs202 #vuassignment #cs202Assignment
cs202 assignment 1 solution fall 2020
Fundamentals of Front-End Development
in this video
how to use simple color as background in html?
how to use bullets for gender and checkboxes for Areas of interest option in html?
how to Use basic HTML and CSS inline styling where required, which you have learnt till Lecture 8 to design your web page as sample page.
You also have how to use HTML basic tags, HTML Table, HTML form and tags to design sample web page.
You will make fields to take student’s data as mentioned in the sample form.
You are required 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.
#vu
#virtualuniversity
#vuassignment
#vulectures
#cs202
CS202 Solution Assignment#01 Fall 2020
Right Click on the below link, then click on “Save link as” to download the file.
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Admision-Form</title> | |
</head> | |
<body style="background-color: rgba(170, 146, 159, 0.281); font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;"> | |
<div style="max-width: 60%; display: block; margin: auto;"> | |
<h1 style="padding: 20px; margin-bottom: 50px; font-family: Arial, Helvetica, sans-serif;font-weight: bold; text-align: center;">University Admision Form</h1> | |
<form> | |
<table> | |
<tr> | |
<td>First Name :</td> | |
<td><input type="text" id="first-name" name="frstname"></td> | |
<td>Second Name :</td> | |
<td><input type="text" id="Second-name" name="Second-name"></td> | |
</tr> | |
<tr> | |
<td>Father Name :</td> | |
<td><input type="text" id="fathername" name="father-name"></td> | |
</tr> | |
<tr> | |
<td>Permanant<br>Address</td> | |
<td><input type="text" style="height: 30px;width: 300px;" id="address" name="addrs"></td> | |
</tr> | |
<tr> | |
<td>Gender :</td> | |
<td> | |
<input type="radio" name="gender" value="male"> Male<br> | |
<input type="radio" name="gender" value="female"> Female<br> | |
</td> | |
</tr> | |
<tr style="line-height: 100px;"> | |
<td>Phone No :</td> | |
<td> | |
<input type="tel" id="phone" name="Phone"> | |
</td> | |
</tr> | |
<tr> | |
<td>Areas of Interest :</td> | |
<td> | |
<input type="checkbox" name="Interest1" id="SAT" value="Science"> | |
<label> Science and Technology</label><br> | |
<input type="checkbox" name="Interest2" id="BIO" value="BIO"> | |
<label> Bio Informatics</label><br> | |
<input type="checkbox" name="Interest3" id="Math" value="Mathematics"> | |
<label> Mathematics</label><br> | |
<input type="checkbox" name="Interest4" id="EDU" value="Education"> | |
<label> Education</label><br> | |
<input type="checkbox" name="Interest5" id="MGT" value="Management"> | |
<label> Management</label><br> | |
<input type="checkbox" name="Interest6" id="other" value="others"> | |
<label> Other</label><br> | |
<input type="text"> (Mention other area(s)) | |
</td> | |
</tr> | |
<tr> | |
<td></td> | |
<td style="line-height: 50px;"><input type="submit" value="Submit" style="padding: 0 20px;"></td> | |
</tr> | |
<h2 style="text-align: center; ">SHAHZAIB (BC180403400)</h2> | |
</table> | |
</form> | |
</div> | |
</body> | |
</html> |
CS202 Fundamentals of Front End Development Assignment 1 Solution & Discussion Fall 2020
Solution:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admision-Form</title>
</head>
<body style="background-color: rgba(170, 146, 159, 0.281); font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;">
<div style="max-width: 60%; display: block; margin: auto;">
<h1 style="padding: 20px; margin-bottom: 50px; font-family: Arial, Helvetica, sans-serif;font-weight: bold; text-align: center;">Virtual University Admision Form</h1>
<form>
<table>
<tr>
<td>First Name :</td>
<td><input type="text" id="first-name" name="frstname"></td>
<td>Second Name :</td>
<td><input type="text" id="Second-name" name="Second-name"></td>
</tr>
<tr>
<td>Father Name :</td>
<td><input type="text" id="fathername" name="father-name"></td>
</tr>
<tr>
<td>Permanant<br>Address</td>
<td><input type="text" style="height: 30px;width: 300px;" id="address" name="addrs"></td>
</tr>
<tr>
<td>Gender :</td>
<td>
<input type="radio" name="gender" value="male"> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
</td>
</tr>
<tr style="line-height: 100px;">
<td>Phone No :</td>
<td>
<input type="tel" id="phone" name="Phone">
</td>
</tr>
<tr>
<td>Areas of Interest :</td>
<td>
<input type="checkbox" name="Interest1" id="SAT" value="Science">
<label> Science and Technology</label><br>
<input type="checkbox" name="Interest2" id="BIO" value="BIO">
<label> Bio Informatics</label><br>
<input type="checkbox" name="Interest3" id="Math" value="Mathematics">
<label> Mathematics</label><br>
<input type="checkbox" name="Interest4" id="EDU" value="Education">
<label> Education</label><br>
<input type="checkbox" name="Interest5" id="MGT" value="Management">
<label> Management</label><br>
<input type="checkbox" name="Interest6" id="other" value="others">
<label> Other</label><br>
<input type="text"> (Mention other area(s))
</td>
</tr>
<tr>
<td></td>
<td style="line-height: 50px;"><input type="submit" value="Submit" style="padding: 0 20px;"></td>
</tr>
</table>
</form>
</div>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admision-Form</title>
</head>
<body style="background-color: rgba(170, 146, 159, 0.281); font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;">
<div style="max-width: 60%; display: block; margin: auto;">
<h1 style="padding: 20px; margin-bottom: 50px; font-family: Arial, Helvetica, sans-serif;font-weight: bold; text-align: center;">Virtual University Admision Form</h1>
<form>
<table>
<tr>
<td>First Name :</td>
<td><input type="text" id="first-name" name="frstname"></td>
<td>Second Name :</td>
<td><input type="text" id="Second-name" name="Second-name"></td>
</tr>
<tr>
<td>Father Name :</td>
<td><input type="text" id="fathername" name="father-name"></td>
</tr>
<tr>
<td>Permanant<br>Address</td>
<td><input type="text" style="height: 30px;width: 300px;" id="address" name="addrs"></td>
</tr>
<tr>
<td>Gender :</td>
<td>
<input type="radio" name="gender" value="male"> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
</td>
</tr>
<tr style="line-height: 100px;">
<td>Phone No :</td>
<td>
<input type="tel" id="phone" name="Phone">
</td>
</tr>
<tr>
<td>Areas of Interest :</td>
<td>
<input type="checkbox" name="Interest1" id="SAT" value="Science">
<label> Science and Technology</label><br>
<input type="checkbox" name="Interest2" id="BIO" value="BIO">
<label> Bio Informatics</label><br>
<input type="checkbox" name="Interest3" id="Math" value="Mathematics">
<label> Mathematics</label><br>
<input type="checkbox" name="Interest4" id="EDU" value="Education">
<label> Education</label><br>
<input type="checkbox" name="Interest5" id="MGT" value="Management">
<label> Management</label><br>
<input type="checkbox" name="Interest6" id="other" value="others">
<label> Other</label><br>
<input type="text"> (Mention other area(s))
</td>
</tr>
<tr>
<td></td>
<td style="line-height: 50px;"><input type="submit" value="Submit" style="padding: 0 20px;"></td>
</tr>
</table>
</form>
</div>
</body>
</html>
© 2021 Created by + M.Tariq Malik.
Powered by
Promote Us | Report an Issue | Privacy Policy | Terms of Service
We are user-generated contents site. All product, videos, pictures & others contents on site don't seem to be beneath our Copyrights & belong to their respected owners & freely available on public domains. We believe in Our Policy & do according to them. If Any content is offensive in your Copyrights then please email at m.tariqmalik@gmail.com with copyright detail & We will happy to remove it immediately.
Management: Admins ::: Moderators
Awards Badges List | Moderators Group
All Members | Featured Members | Top Reputation Members | Angels Members | Intellectual Members | Criteria for Selection
Become a Team Member | Safety Guidelines for New | Site FAQ & Rules | Safety Matters | Online Safety | Rules For Blog Post