-3

i am trying to make this under construction page with this special effect.i mean the strip line on every letter.i am learning web design so please help me to make this effect.

enter image description here

i have no idea how to make this either using CSS or JS!

Scott Marcus
  • 64,069
  • 6
  • 49
  • 71

1 Answers1

1

It's not a special CSS or JS effect. It's a custom font.

Use a web font like this : https://fonts.google.com/specimen/Bungee+Inline

To embed your selected fonts into a webpage, copy this code into the of your HTML document.

<link href="https://fonts.googleapis.com/css?family=Bungee+Inline" rel="stylesheet">

Use the following CSS rule to specify this family:

font-family: 'Bungee Inline', cursive;

For examples of how fonts can be added to webpages, see the getting started guide.

Jeremy Thille
  • 26,047
  • 12
  • 43
  • 63