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