HTML/CSS - 8
HTML/CSS - 8: Basic CSS Styling
Move beyond inline styles! Use a <style> tag in the <head> to style multiple elements at once.
👀 Show Solution
<style>
h1, h2 {
color: #00ff9d;
}
p {
margin-bottom: 20px;
}
</style>
HTML/CSS - 8: Basic CSS Styling
Move beyond inline styles! Use a <style> tag in the <head> to style multiple elements at once.
<style>
h1, h2 {
color: #00ff9d;
}
p {
margin-bottom: 20px;
}
</style>