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