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