Introduction to CSS
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 Tutorial</title>
<link rel="stylesheet" href="tutorial13.css">
<style>
p{
color: red;
background-color:yellow;
}
</style>
</head>
<body>
<h3>this is CSS Tutorial</h3>
<p>this tutorial will teach you everything you need to know about/CSS</p>
</body>
</html>
CSS
p{
color: rgb(13, 202, 13);
background-color: yellow;
}
Comments
Post a Comment