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