1.Satrli stillar (Inline styles)
HTML
<body>
<h1 style="color: red;">Sarlavha</h1>
<a href="https://google.com" style="color: green;">Googlega o'tish</a>
</body>
2.Ichki stillar (Internal styles)
<head>
<style>
.heading {
color:red;
}
.Link {
color: green;
}
</style>
</head>
<body>
<h1 class ="heading">Sarlavha</h1>
<a href="https://google.com" class="Link">Googlega o'tish</a>
</body>
3.Tashqi stillar (External styles)
index.html
<head>
<Link rel="stylesheet" href=./css/styles.css">
</head>
<body>
<h1 class="heading">Sarlavha</h1>
<a href="https://google.com" class="Link">Googlega o'tish</a>
</body>
styles.css
.heading {
color: red;
}
.Link {
color: green;
}
Top comments (0)