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