I have a header on my website, and I'd like it to look like a 3D drawn header - like the image below:
How should I do this? I tried creating a <div> element to put behind it with the same text but a different effect, but that didn't work. How best could I do this? My code so far is below.
<h1>My Header Here</h1>
CSS
h1 {
color: white;
border-color: black;
}
The solution does not have to be pure CSS, it can be JS, but no external libraries (apart from jQuery)
