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