Learn Python, Microsoft 365 and Google Workspace
<!DOCTYPE html>
<html lang="en">
<head>
<title>Class Selectors </title>
<style type="text/css">
/* text-align: left | right | center | justify */
p.normal {
color:blue;
text-align: right;
}
p.warning {
color:red;
text-align: center;
}
</style>
</head>
<body>
<p class="normal">
I've learned that people will forget what you said, people will forget what you did, but people will never
forget how you
made them feel.”
<cite>― Maya Angelou</cite>
</p>
<p class="warning">
“Always forgive your enemies; nothing annoys them so much.” ― Oscar Wilde
</p>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Generic Selectors </title>
<style type="text/css">
/* text-decoration: none | underline | overline | line-through | blink */
.alert {
color: red;
text-decoration: underline;
}
</style>
</head>
<body>
<h1> Selector Forms </h1>
<h2 class="alert">Generic Class Selector</h2>
<p class="alert">
“Always forgive your enemies; nothing annoys them so much.” ― Oscar Wilde
</p>
</body>
</html>
Apply Inline, Document-Level, and External CSS to style multiple paragraphs and a button in a webpage.
task.html
) with the following elements:
h1
) with the text “CSS Styling Task”p
) with different texts:
button
) with the text “Hover Over Me!”Apply CSS using the three different levels:
p
), setting color to red and font size to 16px.<style>
tag in the <head>
, style the second paragraph to have blue text and italic font style.task-styles.css
):
.external-text
):
task.html
)<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Styling Task</title>
<link rel="stylesheet" href="task-styles.css"> <!-- External CSS Link -->
<style>
/* Document-Level CSS */
.document-text {
color: blue;
font-style: italic;
}
</style>
</head>
<body>
<h1>CSS Styling Task</h1>
<p style="color: red; font-size: 16px;">This paragraph is styled using inline CSS.</p>
<p class="document-text">This paragraph is styled using document-level CSS.</p>
<p class="external-text">This paragraph is styled using external CSS.</p>
<button>Hover Over Me!</button>
</body>
</html>
task-styles.css
)/* External CSS for the third paragraph */
.external-text {
color: green;
font-size: 18px;
}
/* External CSS for the button */
button {
background-color: orange;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
/* Button hover effect */
button:hover {
background-color: darkorange;
}