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