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