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