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