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