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