<style>
.box {
width: 100px;
height: 100px;
background-color: #4CAF50;
transition: transform 0.5s;
}
.move {
transform: translate(150px, 50px);
}
</style>
</head>
<body>
<a href="#" onClick="window.history.go(-1);">Home</a><br>
<div class="box" id="box"></div>
<button onclick="document.getElementById('box').classList.toggle('move')">Trasla</button>