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