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