The tutor continues about the graphics library jsDraw2DX: how to use it for outlined text. To accomplish the effect above one might proceed something like this: <div id=”grph” style=”position:relative; height:330px;width:410px; background-color:navy; border-style:solid;border-color:brown; border-width:2px”></div> <script src=”dir_where_jsDraw2DX_resides/jsDraw2DX.js”></script> <script> var gr0=new jxGraphics(document.getElementById(“grph”)); var …

Web Design: graphics: Outlined Text with jsDraw2DX Read more »

The tutor shows how to do outlined text with SVG. Outlined text is neat, and there are a few ways to do it, including with SVG: <svg width=”525″ height=”280″ style=”display:block;margin:auto;border-style:solid;border-color:#ee9999″> <text x=”75″ y=”175″ style=”font-size:48px;stroke:#ee9999;fill:#001111″> SVG outlined text! </text> </svg> You …

Web design: SVG outlined text Read more »