LOGBOOK

HELP

Mission Logs




Q What are semantic HTML5 container elements?

Semantic container elements name what a region of the page means — like <header>, <nav>, <main>, <article>, or <footer> — instead of being generic boxes. Before HTML5, developers built page regions out of plain <div> boxes labelled with class names. Semantic elements replace many...

Quiz: WEBT / HTML Documents | updated: Jul 14, 2026




Q What query operators are available in MongoDB?

MongoDB queries are themselves JSON objects, so instead of an SQL WHERE clause you describe the match with special $-prefixed operator keys. A query like { age: 18 } means "exactly 18". To express anything richer - greater than, not equal, ranges - you nest an operator object as...

Quiz: WEBT / Database Connections | updated: Jul 14, 2026





Q How do you create hyperlinks in HTML?

Hyperlinks use the anchor element <a>, whose href attribute holds the destination and whose content is the clickable text the user sees. The anchor (<a>) is what makes HTML "hyper" — it turns text into a link to another resource: <a href="destination">Link Text</a> The two parts...

Quiz: WEBT / HTML Documents | updated: Jul 14, 2026