Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

Quiz: 01 Session: 2018-20

Course Title: Web Design & Development Semester: 5th


Course Code: BSCS-4704 Name: Samra Tasawar
Max Marks: (7+8=15)

Section-1
Q1. Answer the following multiple-choice questions:

1. Which language is used for creating Web Pages?


☐ PASCAL
☐C
☐HTML
☐BASIC
2. Which program is used by web clients to view the web pages?
☐ Web browsers
☐Protocol
☐Web server
☐Search engine
3. What is the name of the location address of the hypertext documents?
☐Uniform Resource locator
☐Web server
☐File
☐Web address
4. What are shared on the internet and are called as webpages?
☐Programs
☐Cables
☐Hypertext documents
☐None
5. HTML allows us to use ____ levels of headings.
☐Two
☐Three
☐Five
☐Six
6. HTML document should begin with the_______
☐<HEAD> tag
☐<TITLE> tag
☐<BODY> tag
☐<HTML> tag
7. Checkboxes are used _______
☐ To enable option
☐To disable option
☐To create lists
☐To enable or disable option

Section-2
Q2. Create a webpage which display the following elements:
1. An ordered and unordered lists
2. Two paragraphs with different colors and font style.
3. Add an image with a link
You need to paste the screenshot of the output below!
<!DOCTYPE html>
<html>
<body>

<h2>An Unordered HTML List</h2>

<ul>
<li>Samra</li>
<li>Hassan</li>
<li>Nisha</li>
</ul>

<h2>An Ordered HTML List</h2>

<ol>
<li>Hassan</li>
<li>Nisha</li>
<li>Samra</li>
</ol>
<p style="font-family:verdana;color:red;">Hello,I am Samra Tasawar. I am computer science student at
Kings International College Mirpur AJK.</p>
<p style="font-family:courier new;color: blue;">i lives in kasgumma.</p>
<img src="https://3.bp.blogspot.com/-msNeT4u6rTY/XAz39bYyDVI/AAAAAAAAAbY/_-
0guAearAAUJAQM-igXeatdg8geqJ25QCLcBGAs/s1600/Awesome%2BMuslim%2BNiqab%2BGirl%2Bin
%2BResturant%2BWallpaper.jpg"
height="300px" width="250px" alt="" />

</body>
</html>
Thank you
Good Luck

You might also like