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