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