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