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