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