*****DOM*****

 <!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document Object Model</title>
</head>
<body>
    <div>
        <h1>Todo</h1>
    </div>
    <ul>
        <li>Eat</li>
        <li>Code</li>
        <li>sleep</li>
    </ul>
</body>
</html>
`    


Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code