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