Inline CSS
<!DOCTYPE html>
<head>

</head>
<body>
    
    <h1 style="color:blue;border: 2px solid;border-color: red;">A Blue Heading</h1>
    <p style="font-size: 20px;font-weight: 400;">HTML Best</p>

</body>
</html>
html code eka athule style tag eka yodagena Css liyane mehema
Internal Css
<!DOCTYPE html>
<head>

<style>
h1{
    color:red;
    font-size: 25px;
}

p{
    color: blue;
    border: 1px solid;
}
</style>

</head>
<body>

     <h1> Hello World 1</h1>
     <p> Hello world paragraph</p>

</body>
</html>
<head> tag eka athule <style> tage ekak hadala Css liyanne mehema
External  CSS
<!DOCTYPE html>
<head>

    <link rel="stylesheet" href="main.css">

</head>
<body>

     <h1> Hello World 1</h1>
     <p> Hello world paragraph</p>

</body>
</html>
Wenath Css file ekaka Css code eka liyala adala Html document eke <head> eke <link> yodagena Css file eka link karanne mehema
Scroll to Top