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