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