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