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