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