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