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