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