Skip to content
Snippets Groups Projects
menu.html 823 B
Newer Older
didierfred's avatar
didierfred committed
<!DOCTYPE html>

<html>
  <head>
    <meta charset="utf-8">
didierfred's avatar
didierfred committed
      <style type="text/css"> 
.button {
    background-color: #008CBA; /* Blue */
    border: none;
    color: white;
    padding: 1px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
	border-radius: 4px;
	transition-duration: 0.4s;
	width="100px";
}

.button:hover {
    background-color: #0070A0; 
}
</style>
didierfred's avatar
didierfred committed
  </head>

<body>
didierfred's avatar
didierfred committed
	<table>
		<tr>
			<td> <input type="button" class="button" style="width:100px" id="config" value="Configure"></input> </td>
			<td> <input type="button" class="button" style="width:100px"  id="start_stop" value="Start" ></input> </td>
		</tr>
	</table>
didierfred's avatar
didierfred committed
</center>
 <script type="text/javascript" src="menu.js"> </script>

</body>

</html>