Home


Codice
<style>
.box {
width: 100px;
height: 100px;
background-color: #f39c12;
transition: all 2s ease-in;
}
.box:hover {
transform: translateX(200px);
background-color: #16a085;
}
</style>
</head>
<body>
<a href="#" onClick="window.history.go(-1);">Home</a><br>
<div class="box"></div>