html - How to make a H1 tag look like this -


i developing web page when came across issue.

 <h1 class="h-padrao">secretarias</h1> 

is possible make h1,h2,h3 tags using css , html (no images)?

enter image description here

i tried using :after achieved no success

thanks

for fun,

more trick text-shadow , background: http://codepen.io/gc-nomade/pen/witad

h1 {   background:repeating-linear-gradient(to left,transparent 0px, transparent 1px, black 1px, black 2px) center repeat-x;   background-size:2px 2px;   text-shadow:     0 0 20px white,      0 0 20px white,     0 0 20px white,     0 0 20px white,     0 0 20px white,     0 0 20px white,     0 0 20px white,     0 0 20px white,     0 0 20px white,     0 0 20px white,     0 0 20px white,     10px 0 white } 

Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -