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