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