diff options
author | Oxbian <oxbian@mailbox.org> | 2024-10-13 14:21:34 -0400 |
---|---|---|
committer | Oxbian <oxbian@mailbox.org> | 2024-10-13 14:21:34 -0400 |
commit | 157468b84553c47d0f5ba312d815ea7195b0d6b5 (patch) | |
tree | 2e367f441239f61f53307855d96e9f40b02e95ac /HTML/buttons.html | |
parent | 633bf74a3ecb66760010ce8b958356523bd75a4b (diff) | |
download | web-template-157468b84553c47d0f5ba312d815ea7195b0d6b5.tar.gz web-template-157468b84553c47d0f5ba312d815ea7195b0d6b5.zip |
feat: components (buttons, inputfields, dropdowns, quotes / codes)
Diffstat (limited to 'HTML/buttons.html')
-rw-r--r-- | HTML/buttons.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/HTML/buttons.html b/HTML/buttons.html new file mode 100644 index 0000000..d2aebf9 --- /dev/null +++ b/HTML/buttons.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <!-- Metadata --> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <!-- CSS & Atom --> + <link rel="stylesheet" href="../CSS/default.css"> + <link rel="stylesheet" href="../CSS/button.css"> + + <title>Button</title> +</head> +<body> + <div style="margin: 5px"> + <a class="button">Default a button</a> + <button class="button">Default button</button> + </div> + + <div style="margin: 5px"> + <a class="button-reversed">Reversed a button</a> + <button class="button-reversed">Reversed button</button> + </div> + + <div style="margin: 5px"> + <a class="link">Link</a> + </div> + + <div style="margin: 5px"> + <button class="button" disabled>Disabled default button</button> + <button class="button-reversed" disabled>Disabled reversed button</button> + </div> +</body> +</html> |