<button></button>
<!-- example -->
<button id="mybutton">A BUtton</button>
<!-- add CSS to align(etc.) and resize them -->
<style>
#mybutton {
margin-top: 50%;
margin-left: 50%;
width: 250px;
}
</style>
<!-- here, I centered my button -->
<!-- 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>
<a herf="blah file/page2"><button>Your Text Here</button></a>
<div data-aos="fade-up"><button class="buton">Prendre rendez-vous</button>
</div>
<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>
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>
/*when you Click on these buttons it should call the function changeColor
and the function will change the color */
<button onclick="changeColor(this, 'red')">
Click me to change my color.
</button>
<button onclick="changeColor(this, 'blue')">
Click me to change my color.
</button>
<button onclick="changeColor(this, 'green')">
Click me to change my color.
</button>
<script>
function changeColor(element, color) {
element.style.color = color;
}
</script>
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>
1
2
<a href="#" class="btn btn-primary btn-lg active" role="button" aria-pressed="true">primary link</a>
<a href="#" class="btn btn-secondary btn-lg active" role="button" aria-pressed="true">link</a>
1
2
<button type="button" class="btn btn-primary btn-lg"disabled>primary</button>
<button type="button" class="btn btn-seconday bt-lg" disabled>button</button>
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>
<Button
android:id ="@+id/push_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Rounded Corners Button"
android:background="@drawable/button_bg_rounded_corners"
android:padding="15dp"
/>
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#DEB887"/>
<stroke android:color="#8A2BE2" android:width="2dp" />
<!--corners allow us to make the rounded corners button-->
<corners android:radius="15dp" />
</shape>
</item>
</selector>