CSS COURSE • LESSON
🔗 How To Add CSS
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
How To Add CSS
There are three ways to add CSS.
1. Inline CSS
<h1 style="color:red;">
Hello
</h1>
2. Internal CSS
<style>
h1{
color:red;
}
</style>
3. External CSS
<link rel="stylesheet" href="style.css">
External CSS is the recommended method for large websites.