xxxxxxxxxx
<!DOCTYPE html>
<script>
function log() {
console.log("Hello World!")
}
</script>
<html>
<button onclick="log()">Button</button>
</html>
xxxxxxxxxx
<button type="button" class="btn btn-primary btn-lg">Large</button>
<button type="button" class="btn btn-primary">Default</button>
<button type="button" class="btn btn-primary">btn-sm</button>
xxxxxxxxxx
<!-- To access the button in css, use a dot (.) and one of the words in "class". I like to define my buttons as "button" and then the specific number so i can customize all the buttons individually while still having a way to customize them all. The "onclick" is used to make functions for JavaScript so that something actually happens when you press the button. -->
<button class="button button1" id="button" onclick="buttonfunction();"> This is a button </button>
xxxxxxxxxx
1
2
3
4
5
6
7
8
9
<button type="button" class="btn btn-primary">primary</button>
<button type="button" class="btn btn-secondary">secondary</button>
<button type="button" class="btn btn-success">success</button>
<button type="button" class="btn btn-info">info</button>
<button type="button" class="btn btn-warning">warning</button>
<button type="button" class="btn btn-danger">danger</button>
<button type="button" class="btn btn-dark">dark</buton>
<button type="button" class="btn btn-light">light</button>
<button type="button" class="btn btn-link">link</button>
xxxxxxxxxx
<div data-aos="fade-up"><button class="buton">Prendre rendez-vous</button>
</div>
xxxxxxxxxx
1
2
<a href="#" class="btn tbn-primary bit-lg disabled">primary link</button>
<a href="#" class="btn btn-secondary" bit-lg disabled">secondary link</button>
xxxxxxxxxx
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-secondary">Secondary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-light">Light</button>
<button type="button" class="btn btn-dark">Dark</button>
<button type="button" class="btn btn-link">Link</button>
xxxxxxxxxx
1
2
3
4
5
6
7
8
<button type="button" class="btn btn-outline-primary">primary</button>
<button type="buton" class="btn btn-outline-secondary">secondary</button>
<button type="button" class="btn btn-outline-success">success</button>
<button type="button" class="btn btn-outline-info">info</button>
<button type="button" class="btn btn-outline-warning">warning</button>
<button type="button" class="btn btn-outline-danger">danger</button>
<button type="button" class="btn btn-outline-dark">dark</button>
<button type="button" class="btn btn-outline-light">light</button>
<button type="button" class="btn btn-outline-link">link</button>
xxxxxxxxxx
<button style="background-color: rgb(188, 184, 184);border-radius:500px;" width="500" height="500">hello button</button>