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