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