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