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