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