Text Typing Animation using HTML CSS and Javascript

  

 

Hi, I will provide a free code for all of you on my YouTube channel, in Text Typing Animation using HTML CSS and Javascript . The learning is very easy, simple and easy to understand for beginners, good luck, good luck, my advice is don't forget to keep learning and repeat until you can, happy coding. have a nice day friend.

this is my post for the previous one, you just have to learn it properly, and I will provide the latest updates about teaching web design quickly and easily

the best way is to always learn and practice directly, don't get hung up on confusing code, if you enter the wrong code, don't panic

This is the code HTML and CSS you need learn :

1. HTML & JAVASCRIPT

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,
    initial-scale=1.0">
    <title>text animation</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="text">
        <h1>Hello <span class="text-animation"></span></h1>
    </div>

    <script src="https://cdn.jsdelivr.net/npm/typed.
    js@2.0.12">
    </script>
    <script>
        let typed = new Typed('.text-animation', {
            strings: ['World ..', 'Good People',
            'Yayya :-)'],
            typeSpeed: 200,
            backSpeed: 150,
            loop: true
        })
    </script>

</body>
</html>

2. CSS

* {
    padding: 0; margin: 0;
    font-family: 'montserrat', sans-serif;
    box-sizing: border-box;
}

.text {
    height: 100vh;
    width: 100%;
    color: #F0F2B6;
    background: #0F3D3E;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

span {
    color: #FFCB42;
}

For more details, you can see the link YouTube below :


https://youtu.be/Ao-knjuvqYk

Download ZIP code for details:  DOWNLOAD NOW

Support my channel. Comment, like and subscribe, success for all of us, happy world hereafter. Amin, Good Luck. 😀

Postingan terkait:

Belum ada tanggapan untuk "Text Typing Animation using HTML CSS and Javascript "

Post a Comment