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