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