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