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