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