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