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