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