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