how to make this typeface? [closed]

0

I want to get this type of letter

I was trying but I do not know what kind it is

@font-face {
					  font-family: "Kimberley";
					  src: url(http://www.princexml.com/fonts/larabie/ »
					  kimberle.ttf) format("truetype");
					}
					h1 { font-family: "Kimberley", sans-serif }
<h1>Reinventamos 
el trabajo en equipo</h1>
    
asked by hubman 31.03.2017 в 03:57
source

1 answer

1

As far as I can see these are defining your css file incorrectly, attach an example of how you should write it.

@font-face {
font-family: TravelingTypewriter;
src: url(TravelingTypewriter.ttf);
}

Later you already use it

p {
font-family: Gentium, serif;
}

@font-face {
font-family: Kimberley;
src: url(http://www.princexml.com/fonts/larabie/kimberle.ttf) format("truetype");
}

h1 { font-family: Kimberley }
<h1>Reinventamos 
el trabajo en equipo</h1>
    
answered by 31.03.2017 в 04:13