Skip to content

Instantly share code, notes, and snippets.

@billyjov
Created May 12, 2020 14:50
Show Gist options
  • Save billyjov/b893d7d01feec3973de1776587dc4800 to your computer and use it in GitHub Desktop.
Save billyjov/b893d7d01feec3973de1776587dc4800 to your computer and use it in GitHub Desktop.
le code produit pendant la video sur le css https://bit.ly/2ySxX0y

code HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="button.css">
</head>
<body>

    <button>
        S'enregistrer
    </button>
    <button class="button-2">
        login
    </button>
</body>
</html>

code css

button {
    color: #ffffff;
    padding: 15px;
    background-color: crimson;
    font-size: 16px;
    border: none;
    border-radius: 33px;
}

.button-2 {
    background: darkcyan;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment