A tu capricho:
Código HTML:
<html>
<head>
<script type = 'text/javascript'>
function toSubmit() {
var form = document.getElementById('action-form');
return form.submit();
}
</script>
<style type = 'text/css' media = 'screen'>
.Button {
width: 100px;
height: 100px;
background-color: red;
}
</style>
</head>
<body>
<section>
<form id = 'action-form' action = '../'>
<div id = 'buttom' class = 'Button' onclick = 'return toSubmit();'>
</div>
</form>
</section>
</body>
</html>
Sinceramente es más que obvio que es una "tarea", así que la utilidad corre por tu cuenta.
Buena suerte.