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