/* Style for the code box */
.code-box {
border: 1px solid #ddd;
border-radius: 5px;
padding: 10px;
background-color: #f9f9f9;
position: relative;
margin: 20px 0;
max-width: 100%;
overflow-x: auto;
}
<!-- JavaScript Code Placeholder -->
<script>
// Get the current date and time
let currentDate = new Date();
// Format the time in hours and minutes
let formattedTime = currentDate.getHours() + ":" + currentDate.getMinutes();
// Display the time in the console
console.log("Current Time:", formattedTime);
</script>