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