Basic HTML Skills Exam! Quiz

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Rishi Pathak
R
Rishi Pathak
Community Contributor
Quizzes Created: 1 | Total Attempts: 545
| Attempts: 545 | Questions: 10
Please wait...
Question 1 / 10
0 %
0/100
Score 0/100
1. The posted speed limit on a highway is 55mph. When passing another car, what is the fastest you can legally drive?

Explanation

The full form of HTML is HyperText Markup Language.

Submit
Please wait...
About This Quiz
Basic HTML Skills Exam! Quiz - Quiz

.
Welcome to this Basic HTML skills exam! Quiz! Html is a computer programming language that is used extensively to write webpages on the internet. Are you well... see moreaware of this language? Why not test your knowledge with this fun quiz? The questions asked in the quiz will test your basic knowledge and will help you understand more concepts. Give it a try! Please make sure to read all the questions carefully before attempting. Keep learning and have fun! see less

2. When was HTML developed?

Explanation

HTML was developed in 1993. This was the year when Tim Berners-Lee, a British scientist, created the first version of HTML (Hypertext Markup Language) while working at CERN. HTML is a standard markup language used for creating web pages and is the backbone of the World Wide Web. It allows the structuring of content on web pages by using tags and elements. Since its inception, HTML has evolved and gone through several versions, with HTML5 being the latest version as of now.

Submit
3. Select the correct syntax.

Explanation

The correct syntax is:
<p>I didn’t say <span> he stole the money.</span></p>

This is the correct syntax because it follows the HTML tag structure. The <p> tag is used to define a paragraph, and the <span> tag is used to define a section of text within that paragraph. The closing tags are also used correctly to close each tag in the correct order.

Submit
4. Which of the following tag should be the parent of the following code?  
<title>Ripension😛</title>

Explanation

The title tag is child of head tag.

Submit
5. Which of the following tags would contain the HTML for a web page's visible content?

Explanation

Only content inside the opening and closing body tags can be displayed to the screen.

Submit
6. Which code will open link in new tab?

Explanation

target="_blank" is added to open a link in new tab

Submit
7. Why is the code below incorrect?
<video src="video.mp4" controls >

Explanation

The video tag is not a self-closing tag. It should have an opening and closing tag.

Submit
8. Which of the following is/are correct code for linking a local HTML file called resources.html?

Explanation

both . and .. are used for relative referencing.

Submit
9. Complete the internal linking in the code given below.  
<html>

<head>
  <title>Brown Bears</title>
</head>

<body>
  <h1>Resources</h1>
  <ul>
    <li><a href="#videos">Videos</a></li>
    <li><a href="#lectures">Lectures</a></li>
    <li><a href="#websites">Websites</a></li>
  </ul>
  <div id="_____">
    <h2>Quadcopter videos</h2>
    <p><em>Fascinated by drones?</em>Here are all the resources you will need for learning the basics of a quadcopter.</p>
    <video src="https://www.youtube.com/watch?v=lseZwkkQ070"></video>
  </div>
  <div id="_____">
    <h2>Quadcopter lectures</h2>
    <p>Ever saw some cool self-flying drones? Let us learn making them ourselves.</p>
    
  </div>
  <div id="_____">
    <h2>Arduino websites</h2>
    <p>The small compact size and low cost of a Raspberry Pi is accompanied by functions of a computer. Let us take you to the amazing world of RPi.</p>
    <a href="https://howtoraspberrypi.com/how-to-raspberry-pi-headless-setup/"></a>
  </div>
</body>
</html>

Explanation

The correct answer is "videos, lectures, websites". In the given code, the internal linking is completed by adding the respective IDs to the div elements. The first div has an ID of "videos", the second div has an ID of "lectures", and the third div has an ID of "websites". These IDs match the href values in the list items, creating internal links within the webpage.

Submit
10. Which of the following is the correct code for comment in HTML?

Explanation

The correct answer is "" and "". In HTML, comments are written using the "" syntax. The "//" syntax is used for comments in programming languages like JavaScript, but it is not valid in HTML. Therefore, the correct way to write a comment in HTML is using the "" syntax.

Submit
View My Results

Quiz Review Timeline (Updated): Aug 24, 2023 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Aug 24, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • May 20, 2019
    Quiz Created by
    Rishi Pathak
Cancel
  • All
    All (10)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
The posted speed limit on a highway is 55mph. When passing another...
When was HTML developed?
Select the correct syntax.
Which of the following tag should be the parent of the following code?...
Which of the following tags would contain the HTML for a web page's...
Which code will open link in new tab?
Why is the code below incorrect?...
Which of the following is/are correct code for linking a local HTML...
Complete the internal linking in the code given below. ...
Which of the following is the correct code for comment in HTML?
Alert!

Advertisement