# Inline-Style

Preview Full HTML

index.html

<html>

<head>
    <title>task3</title>
</head>

<body>
    <h1 style="color:blue;">HelloWorld</h1>
    <h1 style="color:rgb(46, 224, 30);">HelloWorld</h1>
    <h1 style="color:#a83232;">HelloWorld</h1>

    <h1>
        <span style="color: yellow;">Hello</span>
        <span style="color:rgb(46, 224, 30)">World</span>
    </h1>
</body>

</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17