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