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