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