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