internal css in html
we learn how to apply CSS on our web pages with some examples..
There are two types of CSS apply. First internal and second is external in this post we apply internal.
<html>
<head>
<title>First project</title>
<style>
h1
{
color: white;
text-decoration: underline;
background: green;
background: green;
}
</style>
</head>
<body>
<h1>First Post</h1>
<p>This is our first Paragraph</p>
</body>
</html>
see result:
No comments:
Post a Comment