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