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