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