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