- How To Create a Glowing Text
- Create HTML
- Add CSS
- Example of creating a glowing text with a linear gradient:
- Result
- Example of creating a glowing text with a background color:
- 17 CSS Glow Text Effects
- Author
- Links
- Made with
- About a code
- Check Me Out Glow Text
- Author
- Links
- Made with
- About a code
- Neon Light Text
- Author
- Links
- Made with
- About a code
- CSS Neon Sign
- Author
- Links
- Made with
- About the code
- Black Mirror Cracked Text Effect
- Author
- Links
- Made with
- About the code
- Shimmering Neon Text
- Author
- Links
- Made with
- About the code
- Flickering Neon Sign Effect Using CSS Text & Box Shadow
- Author
- Links
- Made with
- About the code
- CSS Neon
- Author
- Links
- Made with
- About the code
- Neon Text Effect
- Author
- Links
- Made with
- About the code
- Neon Text Flicker Glow
- Author
- Links
- Made with
- About the code
- Bill 🚀👽 🌀 Paxton Tribute — Glow Text
- Author
- Links
- Made with
- About the code
- Glowing Text
- Author
- Links
- Made with
- About the code
- Neon Flux
- Author
- Links
- Made with
- About the code
- Neon text-shadow Effect
- Author
- Links
- Made with
- About a code
- Neon Sign
- Author
- Links
- Made with
- About the code
- Blazing Fire
- Author
- Links
- Made with
- About a code
- CSS Animated Neon Sign
- Author
- 10+ Stunning CSS Glowing Text Effect – Stackfindover
- How To Create a Glowing Text
- Best Collection of CSS Glowing text
- #2 Animated glowing text effect
- #3 Simple Glowing text button style
- #4 CSS Glowing fire animated text
- #5 Glowing text animation
- #6 flickering glowing text animation
- #7 Glowing Text Loading Animation
- #8 Neon Glowing Text Animation
- #9 Glowing text typography effect
- #10 Simple Neon text animation
- #11 Multiple Glowing text animation examples
- #12 Black mirror cracked glowing text effect
- #13 3d CSS glowing text effect
- Table of Contents
How To Create a Glowing Text
Glowing texts catch the user’s attention immediately. They can easily put someone in a good mood. You can choose light soothing colors and gently glowing elements, which will give a relaxed feeling to the user. Today’s tutorial will show you how to create a glowing text using only HTML and CSS. Follow the steps and see examples of glowing texts.
Create HTML
Add CSS
- Set the color of the element with the background property set to its «linear-gradient» value.
- Style the «glow» class with the font-size and color properties and then, set the text-align property to its «center» value.
- Create animation, which has five values. Use the -webkit- and -moz- vendor prefixes with this animation property.
- Use the @keyframes rule. It can start with a percentage (%) or with the keywords «from» (same as 0%) and «to» (same as 100%).
- Define the values of the text-shadow property. The first value is the horizontal offset of the shadow, and the second one is the vertical offset. The third is the blur-radius, and the final value is the color of the text.
The @keyframes rule is fully supported by major browsers. However, we use -webkit- for Google Chrome 4.0, Safari 4.0, and Opera 15.0.
body < background: linear-gradient(90deg, rgba(177, 64, 200, 1) 0%, rgba(109, 9, 121, 1) 35%, rgba(45, 1, 62, 1) 100%); > .glow < font-size: 70px; color: #ffffff; text-align: center; -webkit-animation: glow 1s ease-in-out infinite alternate; -moz-animation: glow 1s ease-in-out infinite alternate; animation: glow 1s ease-in-out infinite alternate; > @-webkit-keyframes glow < from < text-shadow: 0 0 10px #eeeeee, 0 0 20px #000000, 0 0 30px #000000, 0 0 40px #000000, 0 0 50px #9554b3, 0 0 60px #9554b3, 0 0 70px #9554b3; > to < text-shadow: 0 0 20px #eeeeee, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6; > >
Example of creating a glowing text with a linear gradient:
html> html> head> title>Title of the document title> style> body < background: linear-gradient(90deg, rgba(177, 64, 200, 1) 0%, rgba(109, 9, 121, 1) 35%, rgba(45, 1, 62, 1) 100%); > .glow < font-size: 70px; color: #ffffff; text-align: center; -webkit-animation: glow 1s ease-in-out infinite alternate; -moz-animation: glow 1s ease-in-out infinite alternate; animation: glow 1s ease-in-out infinite alternate; > @-webkit-keyframes glow < from < text-shadow: 0 0 10px #eeeeee, 0 0 20px #000000, 0 0 30px #000000, 0 0 40px #000000, 0 0 50px #9554b3, 0 0 60px #9554b3, 0 0 70px #9554b3; > to < text-shadow: 0 0 20px #eeeeee, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6; > > style> head> body> h1 class="glow">W3DOCS h1> body> html>
Result
Example of creating a glowing text with a background color:
html> html> head> title>Title of the document title> style> html, body < margin: 0; padding: 0; width: 100%; height: 100%; display: table; background-color: black; > .container < display: table-cell; text-align: center; vertical-align: middle; > .glow < color: #FB4264; font-size: 9vw; line-height: 9vw; text-shadow: 0 0 3vw #F40A35; > .glow < animation: glow 1.2s ease infinite; -moz-animation: glow 1.2s ease infinite; -webkit-animation: glow 1.2s ease infinite; > @keyframes glow < 0%, 100% < text-shadow: 0 0 1vw #FA1C16, 0 0 3vw #FA1C16, 0 0 10vw #FA1C16, 0 0 10vw #FA1C16, 0 0 .4vw #FED128, .5vw .5vw .1vw #806914; color: #FED128; > 50% < text-shadow: 0 0 .5vw #800E0B, 0 0 1.5vw #800E0B, 0 0 5vw #800E0B, 0 0 5vw #800E0B, 0 0 .2vw #800E0B, .5vw .5vw .1vw #40340A; color: #806914; > > style> head> body> div class="container"> div class="glow">W3DOCS div> div> body> html>
17 CSS Glow Text Effects
Collection of hand-picked free HTML and CSS glow (neon) text effect code examples from Codepen, GitHub and other resources. Update of November 2021 collection. 3 new items.
Author
Links
Made with
About a code
Check Me Out Glow Text
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About a code
Neon Light Text
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About a code
CSS Neon Sign
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
Black Mirror Cracked Text Effect
This example shows how pure CSS can be used to re-create the cracked text effect from the Black Mirror TV show intro.
Compatible browsers: Chrome, Firefox, Opera, Safari
Author
Links
Made with
About the code
Shimmering Neon Text
Pure CSS shimmering neon text.
Compatible browsers: Chrome, Firefox, Opera, Safari
Author
Links
Made with
About the code
Flickering Neon Sign Effect Using CSS Text & Box Shadow
This pen shows how the CSS text-shadow and box-shadow properties can be animated to create a flickering neon sign effect. Neon text and border color can be individually changed by updating their respective CSS variables.
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
CSS Neon
Simple animated neon effect created with CSS.
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
Neon Text Effect
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
Neon Text Flicker Glow
Neon text flicker glow with HTML, CSS and JavaScript.
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
Bill 🚀👽 🌀 Paxton Tribute — Glow Text
Compatible browsers: Chrome, Firefox, Opera, Safari
Author
Links
Made with
About the code
Glowing Text
HTML and CSS glowing text.
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
Neon Flux
A pulsing neon sign made using many overlaid text-shadow s.
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
Neon text-shadow Effect
Neon text-shadow effect in HTML, CSS and JavaScript.
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About a code
Neon Sign
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About the code
Blazing Fire
Animated text effects using CSS3 text-shadow to give text headers a blazing flame.
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
Links
Made with
About a code
CSS Animated Neon Sign
Compatible browsers: Chrome, Edge, Firefox, Opera, Safari
Author
10+ Stunning CSS Glowing Text Effect – Stackfindover
Hello Friends, in this article I will teach you how to create css glowing text effect, and also I have listed 10+ glowing text examples made with HTML, CSS & JavaScript. Check out these excellent examples which are available on CodePen.
How To Create a Glowing Text
First we have to use the text-shadow property to create the glowing text effect, and also we can use keyframes animation to add the repeatedly glowing effect.
.glowing-text < font-size: 80px; color: #fff; text-align: center; -webkit-animation: glowing-text 1s ease-in-out infinite alternate; -moz-animation: glowing-text 1s ease-in-out infinite alternate; animation: glowing-text 1s ease-in-out infinite alternate; >@-webkit-keyframes glowing-text < 0% < text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #2e00e6, 0 0 40px #6300e6, 0 0 50px #c300e6, 0 0 60px #e200e6, 0 0 70px #e600ca; >100% < text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6; >>
We can also use text-shadow without keyframes animation to create glowing text.
Best Collection of CSS Glowing text
Shimmering glowing text using HTML and CSS, which was developed by Comehope. Moreover, you can customize it according to your wish and need.
Author: | Comehope |
Created on: | August 9, 2018 |
Made with: | HTML and CSS |
Demo Link: | Source Code / Demo |
Tags: | Shimmering glowing text |
#2 Animated glowing text effect
Animated glowing text effect using HTML and CSS(SCSS), which was developed by Bennett Feely. Moreover, you can customize it according to your wish and need.
Author: | Bennett Feely |
Created on: | August 9, 2016 |
Made with: | HTML and CSS(SCSS) |
Demo Link: | Source Code / Demo |
Tags: | Animated glowing text |
#3 Simple Glowing text button style
Simple Glowing text button style using HTML and CSS, which was developed by Pratham. Moreover, you can customize it according to your wish and need.
Author: | Pratham |
Created on: | August 11, 2020 |
Made with: | HTML and CSS |
Demo Link: | Source Code / Demo |
Tags: | Simple Glowing text |
#4 CSS Glowing fire animated text
Glowing fire animated text using HTML and CSS, which was developed by zFunx. Moreover, you can customize it according to your wish and need.
Author: | zFunx |
Created on: | June 17, 2017 |
Made with: | HTML and CSS |
Demo Link: | Source Code / Demo |
Tags: | Glowing fire animated text |
#5 Glowing text animation
Animated neon glow text using HTML and CSS, which was developed by Habib. Moreover, you can customize it according to your wish and need.
Author: | Habib |
Created on: | January 1, 2019 |
Made with: | HTML and CSS |
Demo Link: | Source Code / Demo |
Tags: | Animated neon glow text |
#6 flickering glowing text animation
Flickering glowing text animation using HTML and CSS, which was developed by t1llo. Moreover, you can customize it according to your wish and need.
Author: | t1llo |
Created on: | May 28, 2019 |
Made with: | HTML and CSS |
Demo Link: | Source Code / Demo |
Tags: | Flickering glowing text |
#7 Glowing Text Loading Animation
Glowing Text Loading Animation using HTML and CSS, which was developed by Shashwata. Moreover, you can customize it according to your wish and need.
Author: | Shashwata |
Created on: | August 18, 2018 |
Made with: | HTML and CSS |
Demo Link: | Source Code / Demo |
Tags: | Glowing Text Loading Animation |
#8 Neon Glowing Text Animation
Neon Glowing Text Animation using HTML and CSS, which was developed by Sujoy Sarkar. Moreover, you can customize it according to your wish and need.
Author: | Sujoy Sarkar |
Created on: | April 20, 2020 |
Made with: | HTML and CSS |
Demo Link: | Source Code / Demo |
Tags: | Neon Glowing Text |
#9 Glowing text typography effect
Unique neon text effect using HTML and CSS, which was developed by Anmol P. Moreover, you can customize it according to your wish and need.
Author: | Anmol P |
Created on: | December 21, 2020 |
Made with: | HTML and CSS |
Demo Link: | Source Code / Demo |
Tags: | Unique glowing text effect |
#10 Simple Neon text animation
Simple Neon text animation using HTML and CSS, which was developed by Mark Heggan. Moreover, you can customize it according to your wish and need.
Author: | Mark Heggan |
Created on: | August 23, 2017 |
Made with: | HTML and CSS |
Demo Link: | Source Code / Demo |
Tags: | Simple Neon text animation |
#11 Multiple Glowing text animation examples
Multiple CSS Glowing animation examples using HTML, CSS and JavaScript which was developed by Erik Jung. Moreover, you can customize it according to your wish and need.
Author: | Erik Jung |
Created on: | February 28, 2016 |
Made with: | HTML, CSS and JavaScript |
Demo Link: | Source Code / Demo |
Tags: | Multiple CSS Glowing effect |
#12 Black mirror cracked glowing text effect
Black mirror cracked effect using HTML and CSS which was developed by George W. Park. Moreover, you can customize it according to your wish and need.
Author: | George W. Park |
Created on: | October 9, 2018 |
Made with: | HTML and CSS |
Demo Link: | Source Code / Demo |
Tags: | Black mirror cracked glowing text |
#13 3d CSS glowing text effect
3d lighting text effect using HTML and CSS which was developed by Shaiq Kar. Moreover, you can customize it according to your wish and need.
Author: | Shaiq Kar |
Created on: | August 21, 2018 |
Made with: | HTML and CSS |
Demo Link: | Source Code / Demo |
Tags: | 3d glowing text effect |
We hope you liked this article. You should definitely keep your thoughts about it in the comment below and share this article with your friends.
Table of Contents
- 1. How To Create a Glowing Text
- 2. Best Collection of CSS Glowing text
- 2.1. #1 Shimmering glowing text
- 2.2. #2 Animated glowing text effect
- 2.3. #3 Simple Glowing text button style
- 2.4. #4 CSS Glowing fire animated text
- 2.5. #5 Glowing text animation
- 2.6. #6 flickering glowing text animation
- 2.7. #7 Glowing Text Loading Animation
- 2.8. #8 Neon Glowing Text Animation
- 2.9. #9 Glowing text typography effect
- 2.10. #10 Simple Neon text animation
- 2.11. #11 Multiple Glowing text animation examples
- 2.12. #12 Black mirror cracked glowing text effect
- 2.13. #13 3d CSS glowing text effect