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