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