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