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