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