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