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