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