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