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