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