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