💻
Programming Easy

Web Development Basics

HTML, CSS and the fundamentals of building websites — 63 easy questions for aspiring web developers and anyone curious about how websites work.

10 Questions
25s Per Question
0+ Plays
← All Programming Quizzes 📚 Study Guide for this category →
💡 Create account to save scores & earn XP
📋 View All 10 Questions & Answers

1. Which HTML tag creates a hyperlink?

  • A. <link>
  • B. <url>
  • C. <a> ✓
  • D. <href>

💡 The <a> (anchor) tag creates hyperlinks in HTML: <a href="url">Link text</a>

2. What is the purpose of the <title> tag in HTML?

  • A. Displays a heading on the page
  • B. Creates a large text
  • C. Shows the page title in the browser tab ✓
  • D. Creates a clickable link

💡 The <title> tag sets the title of the HTML document shown in the browser tab.

3. What does URL stand for?

  • A. Universal Resource Locator
  • B. Uniform Resource Locator ✓
  • C. United Reference Link
  • D. Uniform Reference Language

💡 URL stands for Uniform Resource Locator — the address of a resource on the internet.

4. Which CSS property changes text color?

  • A. font-color
  • B. text-color
  • C. color ✓
  • D. background-color

💡 The CSS property "color" sets the text color of an element.

5. What does JavaScript primarily do on a website?

  • A. Styles the page
  • B. Stores data
  • C. Structures content
  • D. Adds interactivity ✓

💡 JavaScript adds interactivity and dynamic behavior to web pages, like button clicks and animations.

6. What does HTTP stand for?

  • A. HyperText Transfer Protocol ✓
  • B. High Tech Transfer Protocol
  • C. HyperText Transmission Process
  • D. Home Transfer Text Protocol

💡 HTTP stands for HyperText Transfer Protocol — the foundation of data communication on the web.

7. What does CSS stand for?

  • A. Computer Style Sheets
  • B. Creative Style System
  • C. Cascading Style Sheets ✓
  • D. Colorful Style Sheets

💡 CSS stands for Cascading Style Sheets — used to style and layout HTML web pages.

8. Which HTML tag is used for the largest heading?

  • A. <h6>
  • B. <h3>
  • C. <heading>
  • D. <h1> ✓

💡 <h1> is the largest heading tag in HTML. Headings go from <h1> (largest) to <h6> (smallest).

9. Which HTML tag creates a paragraph?

  • A. <para>
  • B. <text>
  • C. <p> ✓
  • D. <pg>

💡 The <p> tag defines a paragraph in HTML: <p>This is a paragraph.</p>

10. What tag is used to insert an image in HTML?

  • A. <image>
  • B. <pic>
  • C. <photo>
  • D. <img> ✓

💡 The <img> tag is used to embed images in HTML: <img src="image.jpg" alt="description">

More Programming Quizzes

View all Programming quizzes →