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