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