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