You are on page 1of 1

CS101

Assignment no. 2
Fall 2020
Assignment Question: -

Write HTML code for making this webpage. Run the code in the browser and provide a
screenshot of the output having your VU ID & your Name “XYZ” as output. The displayed
webpage should have two links “VU Website” and “LMS Student Portal” that will open
the VU Website (www.vu.edu.pk) and LMS portal (https://vulms.vu.edu.pk) when clicked.

Solution:
And websites open when the links is clicked.
<!doctype html>
<html>
<head>
<title>CS101 Assignment/BC*******</title>
</head>
<body>
<h2>Virtual University of Pakistan</h2>
<p>Virtual University, Pakistan's first University based on completely modern
Information</p>
<h3>Name: Asadullah</h3>
<p><u>ID: BC*******</u></p>
<p><i>Semester: 1st</i></p>
<h3>students are suggested to visit the following links:</h3>
<p>1)..<a href="https://www.vu.edu.pk">VU Website</a>
<p>2)..<a href="https://vulms.vu.edu.pk/LMS_LP.aspx">LMS student Portal</a>
</body>
</html>

You might also like