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