Function to create and style the t
Function to create and style the t
function createSnapchatTimeDisplay() {
// Create the time display element
const timeDiv = document.createElement('div');
timeDiv.id = 'time';
document.body.appendChild(timeDiv);
body {
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
#time {
font-family: 'SF Pro Display Semibold Italic', sans-serif;
font-size: 80px;
font-weight: 600;
font-style: italic;
color: #000;
}
`;
document.head.appendChild(style);
}