About Lesson
3 Ways to Implement CSS
Inline Style
Inpage Style Tag
External Style Sheet
Inline Style
<h1 style=“color:red; font-size:15px;”>Welcome To Code4Education Channel</h1>
Inpage Style Tag
<html>
<head>
<style>
h1 {
color: red;
font-size: 15px;
}
</style>
</head>
<body><h1>Code4Education</h1></body>
</html>
External Style Tag
<head>
<link rel=“stylesheet” type=“text/css” href=“style.css”>
</head>
Exercise Files
No Attachment Found
Join the conversation