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