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