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