Who developed the first version of HTML?
Answer
Tim Berners-Lee
80 public questions with answers, drawn from the well. How many can you answer?
HTML and CSS trivia covers the foundations of web pages: document structure, semantic elements, attributes, character encoding, selectors, layout systems, and visual styling. Questions may ask who developed the first version of HTML, which attribute sets a page's encoding, or how an input field controls numeric increments.
The CSS section ranges from borders, resizing, pseudo-classes, and the inline-block display value to modern Grid properties such as the rule that defines row sizes. This makes the hub useful for web-development students, coding classes, interview preparation, and developers who want a quick knowledge check. It mixes historical fundamentals with practical syntax and layout concepts encountered in everyday front-end work.
Answer
Tim Berners-Lee
Answer
border-style
Answer
:indeterminate
Answer
grid-template-rows
Answer
@keyframes
Answer
line-height
Answer
opacity
Answer
<textarea>
Answer
::selection
Answer
specificity
Answer
flex-direction
Answer
<video>
Answer
<blockquote>
Answer
animation-duration
Answer
font-weight
Answer
<!DOCTYPE html>
Answer
class
Answer
text-align
Answer
<ol>
Strong questions test both structure and styling: who developed HTML, which attribute declares character encoding, what display value combines inline flow with block-level dimensions, which property styles a border, and what CSS Grid property controls row sizing. These questions reveal whether someone understands concepts rather than only memorized tags.
The difficulty ranges from beginner questions about common attributes and properties to intermediate questions about pseudo-classes, resizing behavior, and CSS Grid. Someone who has built basic pages should recognize many answers, while less familiar layout and form-state questions require practical front-end experience.
Tim Berners-Lee developed the first version of HTML while creating the World Wide Web at CERN. HTML provided a way to structure documents and connect them through hyperlinks. The language has since evolved through standards work, but its original purpose remains central to how web pages are organized.
HTML defines the content and structure of a web document, including headings, paragraphs, links, forms, and images. CSS controls presentation, such as colors, spacing, typography, borders, and layout. In a typical website, HTML supplies the meaning and elements while CSS determines how those elements appear.
The CSS display property determines how an element participates in layout and how its children are arranged. Values such as block, inline, inline-block, flex, grid, and none produce different behavior. For example, inline-block allows an element to sit in inline flow while accepting width, height, and other block-like dimensions.