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