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