Difference between revisions of "Html link code"

From MS Computech
Jump to: navigation, search
(New page: HTML_Link Code >>> <pre><a href="index.html" style="color:Blue" title="Blue Color Link">Blue Color Link</a><br /> <a href="index.html" style="color:Green" tit...)
 
 
Line 1: Line 1:
HTML_Link Code &gt;&gt;&gt;
+
'''HTML_Link Code'''
<pre>&lt;a href="index.html" style="color:Blue" title="Blue Color Link"&gt;Blue Color Link&lt;/a&gt;&lt;br /&gt;
+
<pre class="brush:html">
&lt;a href="index.html" style="color:Green" title="Green Color Link"&gt;Green Color Link&lt;/a&gt;&lt;br /&gt;
+
<a href="index.html" style="color:Blue" title="Blue Color Link">Blue Color Link</a>
&lt;a href="index.html" style="color:Red" title="Red Color Link"&gt;Red Color Link&lt;/a&gt;&lt;br /&gt;
+
<a href="index.html" style="color:Green" title="Green Color Link">Green Color Link</a>
 +
<a href="index.html" style="color:Red" title="Red Color Link">Red Color Link</a>
 
</pre>
 
</pre>

Latest revision as of 18:29, 2 July 2009

HTML_Link Code

<a href="index.html" style="color:Blue" title="Blue Color Link">Blue Color Link</a>
<a href="index.html" style="color:Green" title="Green Color Link">Green Color Link</a>
<a href="index.html" style="color:Red" title="Red Color Link">Red Color Link</a>