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