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