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