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