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