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