S P E C I A L N O T E S
The IMG Tag
The IMG tag normally includes a border by default. The border:none; spec overrides that standard. You have the
option of using STYLE within an IMG SRC block to specify a border of any pixel (px) size. For example, you
colud define a border in this manner ... STYLE="border:1px solid black;" (thinnest possible). An example of a
thicker border with blue color could be coded as .. STYLE="border:5px solid blue;".
You can also resize the image itself with the code STYLE="width:000px; height:000px;" -- the 000's
(or 00's or 0000's) being whatever pixel size you choose. Regarding the four examples presented below,
use your browser's "View Page Source" feature to see the exact coding for each image.
The A anchor Tag
By itself, the A anchor tag will underline all text within its confines. The added default spec also colors the text medium blue.
This code <A target="_blank" href="https://www.somesiteontheweb.com/">Some Site On The Web</A> produces
Some Site On The Web
This code <A class="gb22" target="_blank" href="https://www.somesiteontheweb.com/">Some Site On The Web</A> produces
Some Site On The Web
The added gb22 class overrides the default 18px font spec (gp18) for any text within this particular division
This code <A class="gr28 zhga" target="_blank" href="https://www.somegreensiteontheweb.com/">Some Green Site On The Web</A> produces
Some Green Site On The Web
The added gr28 class overrides the default 18px font spec (gp18), and replaces the Arial font with Times New Roman.
The zhga class changes the text color from medium blue to green with Bold weighting.
When and where appropriate, especially when you desire that a series of web-links all have the same text size, use a single
g--- class (plus supporting class shortcuts where desired) OUTSIDE OF any multiple set of A anchor code web-links. This will save
you both composing time as well as HTML code space, because you do not have to add class="g---" to each individual web-link.
<span class="gp20"> Code of Link-1 Code of Link-2
Code of Link-3 Code of Link-4 </span>