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