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