Coder Wrap provides free to use snippets Coder Wrap provides free to use snippets

🗙
Login
Register

Create Account

Cancel
Back to Others
Preview Source Code
Download
HTML
CSS
.dynamic-year {
    max-width: 500px !important;
    text-align: center;
    width: 100%;
    height: 300px;
    margin:auto;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: #ccc 1px solid;
    font-weight: 700;
    background-color: #e7e7e7;
}
JS
var dynamicyear = new Date().getFullYear();
document.getElementById('dynamic_year').innerHTML = dynamicyear;

Related Snippets

Leave a comment

Your email address will not be published. Required fields are marked *