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