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