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