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