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