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