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