Use on the webTotal Use [ 4806 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/e59a877a4bfd1c9d469cd2ce6be8ba7f?family=YETI%2BTHEVAMP-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/e59a877a4bfd1c9d469cd2ce6be8ba7f?family=YETI%2BTHEVAMP-Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "YETI+THEVAMP-Regular";
src: url("https://db.onlinewebfonts.com/t/e59a877a4bfd1c9d469cd2ce6be8ba7f.eot");
src: url("https://db.onlinewebfonts.com/t/e59a877a4bfd1c9d469cd2ce6be8ba7f.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/e59a877a4bfd1c9d469cd2ce6be8ba7f.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/e59a877a4bfd1c9d469cd2ce6be8ba7f.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/e59a877a4bfd1c9d469cd2ce6be8ba7f.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/e59a877a4bfd1c9d469cd2ce6be8ba7f.svg#YETI+THEVAMP-Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "YETI+THEVAMP-Regular";