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