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