I am new to HTML (I am working on Android). I try to create a web page. My web page contains h2 (heading), table, image, edittext and buttons. One h2 is on the left side of the web page and another h2 is on the right side of the web page. I am using the following code:
<html>
<head>
<style type="text/css">
body{
background-color:#d0e4fe;
}
h2{
color:orange;
text-align:left;
}
h2{
color:orange;
text-align:right;
}
p{
font-family:"Times New Roman";
font-size-size:18px;
}
</style>
</head>
<title>VacantTable And Waiter Status</title>
</head>
<h2>Allot Table Number</h2>
<h2>Table status style</h21>
</html>
but it is showing on the right side of the web page. I am able to display the table, but how to display a button at the bottom of the table?
There are many ways to apply styles, you can try this: