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