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