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