Mod 5 PDF
Mod 5 PDF
Front: What are the three main components of web development? Back: HTML
(HyperText Markup Language), CSS (Cascading Style Sheets), and JavaScript.
Front: What is the purpose of CSS? Back: CSS styles HTML elements, improves
website appearance, usability, and accessibility, and allows for transformations,
transitions, and animations.
Front: Name the three methods to apply CSS. Back: Inline (within HTML tags),
Internal (within the HTML <head>), and External (in a separate CSS file linked to
HTML).
Front: What are the benefits of using CSS? Back: Reusable code, faster downloads,
easier maintenance, creative styles, and cross-browser compatibility.
o <head>
o <style>
o </style>
</head>
External CSS: CSS written in a separate file linked to HTML.
o Example: <link rel="stylesheet" href="styles.css">