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