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