CSS-Cascading Style Sheet Tutorial.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS-Cascading Style Sheet Tutorial</title>
<style>
p {
color:rgb(231, 170, 79);
background-color: seagreen !important;
}
</style>
<link rel="stylesheet" href="tut13.css">
</head>
<body>
<h1>This is CSS Tutorial</h1>
<!-- <p style="color:red;background-color: yellow;">This tutorial will teach you
everything you need to know about HTML/CSS</p> -->
<p>This tutorial will teach you everything you
need to know about HTML/CSS</p>
</body>
</html>
Comments
Post a Comment