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