HTMLify

index.html
Views: 132 | Author: cody
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>Cards</title>
    <link rel="stylesheet" href="style.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Manrope&display=swap" rel="stylesheet">
</head>

<body>
    <div class="container">
        <div class="card">
            HTML
        </div>
        <div class="card">
            CSS
        </div>
        <div class="card">
            JS
        </div>
        <div class="card">
            Python
        </div>
    </div>
</body>

</html>

Comments