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