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