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