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