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