Text Typing Effect Using HTML CSS Only

text-typing-effect-using-html-css-only

Text Typing Effect Using HTML CSS Only

In this article, we’ll show you how to create a text typing effect using HTML and CSS only. No JavaScript is needed!

Moreover, we’ll walk you through step by step how to create this cool text typing effect that can be added to your web projects. It’s a great way to add some interactivity and engagement to your web pages.

We’ll be using HTML and CSS to create this effect, so even if you’re a beginner, you’ll be able to follow along with ease. Plus, with no JavaScript involved, this article is perfect for those who want to keep their websites lightweight and fast-loading.

Created By [Author](https://rutikkpatel.medium.com/) ( [Rutik Patel](https://rutikkpatel.medium.com/) )

 

Points to be discussed

  • Preview

  • YouTube Tutorial

  • HTML Code

  • CSS Code

  • References

 

Preview :

A live demo of the website can be viewed by clicking here.

Preview — 1

Preview — 2

 

YouTube Tutorial :

 

HTML CODE :

index.html





  
  
  
  Text Typing Effect Using CSS
  



  

Text Typing Effect Using CSS

Hello Folks, I am Rutik Patel...

 

CSS CODE :

style.css

* {
  margin: 0;
  padding: 0;
}

.heading {
  text-align: center;
  margin: 10px 0px;
}

.container {
  width: 100vw;
  height: 90vh;
  display: grid;
  place-items: center;
}

.welcome_text {
  font-size: 3.2rem;
  border-right: 2px solid red;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typewriter 5s steps(55, end) forwards;
}

@keyframes typewriter {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

 

References :

GitHub Repository: https://github.com/rutikkpatel/HTML-CSS/tree/main/Text%20Typing%20Effect

Total
0
Shares
Leave a Reply

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

Previous Post
cli-client-for-reductstore-v07.0-has-been-released

CLI Client for ReductStore v0.7.0 has been released

Next Post
how-to-use-@next/font-globally

How to use @next/font globally

Related Posts