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