Who invented the World Wide Web?
Who is Tim Berners-Lee?
Which HTML tag is used to create a hyperlink?
What is <a>?
Which CSS property changes the background color of an element?
What is background-color?
What is Figma used for?
What is designing and wireframing websites and UI elements?
Which keyboard shortcut saves a file?
What is Ctrl + S?
What was the first graphical web browser?
What is Mosaic?
What is the difference between an internal and external link in HTML?
What is an internal link directs to another page on the same website, while an external link directs to a different website?
What does display: flex; do in CSS?
What is it enables the Flexbox layout system for better alignment of elements?
What is the difference between a low-fidelity and a high-fidelity wireframe?
What is a low-fidelity wireframe is a simple sketch, while a high-fidelity wireframe is more detailed and digital?
Which shortcut reopens the last closed browser tab?
What is Ctrl + Shift + T?
What was ARPANET and why was it important?
What is the precursor to the Internet, originally developed for military and academic research?
Which JavaScript method is used to select an element by its ID?
What is document.getElementById()?
What is the difference between justify-content: center; and align-items: center; in Flexbox?
What is justify-content aligns items along the main axis, while align-items aligns items along the cross axis?
What are three key features in Figma that help with wireframing?
What are Frames, Grids & Guides, and Shapes & Text Tools?
Which keyboard shortcut allows you to quickly switch between open applications?
What is Alt + Tab?
In what year was the first website published?
What is 1991?
Write the JavaScript code to display an alert when a button with the ID 'clickMe' is clicked.
function greet() {
alert("Hello!");
}
document.getElementById("clickMe").addEventListener("click", greet);
Write the CSS code to create a div with a border radius of 10px and a light blue background
div {
border-radius: 10px;
background-color: lightblue;
}
What should be included in a wireframe?
What are headers, navigation bars, buttons, images, text blocks, and footers?
What is the purpose of the <meta name="viewport" content="width=device-width, initial-scale=1.0"> tag in HTML?
What is it makes the page responsive by adjusting the layout for different screen sizes?
What was the Dot-Com Boom, and how did it impact the Internet?
What is the rapid growth of websites and e-commerce businesses in the late 1990s and early 2000s?
What does console.log("message") do in JavaScript?
What is it prints a message to the browser's console for debugging purposes?
Explain the difference between px, vw, and vh units in CSS.
Answer:
Describe the steps to create a wireframe in Figma.
Write the HTML and CSS code to create a centered div with a width of 300px, height of 150px, and a cyan background.
<div class="box">Hello!</div>
<style>
.box {
width: 300px;
height: 150px;
background-color: #00FFFF;
display: flex;
justify-content: center;
align-items: center;
border-radius: 12px;
}
</style>