Use on the webTotal Use [ 3537 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/2a89fe9c4106cb053f80cf5337fdf928?family=Wanderlust+Typewriter+D+Regular" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/2a89fe9c4106cb053f80cf5337fdf928?family=Wanderlust+Typewriter+D+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Wanderlust Typewriter D Regular";
src: url("https://db.onlinewebfonts.com/t/2a89fe9c4106cb053f80cf5337fdf928.eot");
src: url("https://db.onlinewebfonts.com/t/2a89fe9c4106cb053f80cf5337fdf928.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/2a89fe9c4106cb053f80cf5337fdf928.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/2a89fe9c4106cb053f80cf5337fdf928.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/2a89fe9c4106cb053f80cf5337fdf928.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/2a89fe9c4106cb053f80cf5337fdf928.svg#Wanderlust Typewriter D Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Wanderlust Typewriter D Regular";