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