|
<<prev |
1 |
2 |
3 |
4 |
5 |
6 |
next>>
RealCart Tag Syntax - Modifying your first template
Ready, Set, CUSTOMIZE
Customization, at this point, involves little more than typing in some new HTML code, a new RealCart Square Tag.
|
From the back of the classroom one of our students exclaims, Hey wait, you said we wouldnt have to learn any HTML. Of course we respond by saying: You arent going to have to learn any HTML, however, we will experiment with the simplest of HTML codes to accomplish what we are trying to illustrate with this course. All you will need to know, you will be told here in class and there is no reason to remember any of it.
|
Interruption over, back to class...
HTML code is often available to you for a number of different purposes. This web stats site allows you to have a FREE page tracker and when you sign up they send you the necessary code.
AOL Instant Messenger also allows you to embed your AIM Remote into your web pages utilizing some HTML code.
A popular FREE search engine from APB Systems can also be added by simply inserting the following code:
<form action="http://www.yourdomain.com/cgi- bin/search.cgi" method="get">
<table bgcolor="#ccccff">
<tr>
<td colspan=2"><input type="text" name="search" size=27>
</td>
</tr>
<tr>
<td>Look for:</td>
<td><select name=boolean>
<option value=or>any word
<option value=and>all words
<option value=exact>exact phrase
</select>
</td>
</tr>
<tr>
<td>Results per page:</td>
<td><select name=max>
<option value="5">5
<option value="10">10
<option value="15">15
<option value="30">30
<option value="50">50
</select>
</td>
</tr>
<tr>
<td colspan=2><input type="checkbox" name="case">Case sensitive
</td>
</tr>
<tr>
<td colspan=2><input type="submit" value="Search my site!">
</td>
</tr>
</table>
</form>
Plenty of sites will provide you with the appropriate HTML code necessary for inclusion of their portal, statistics or other element into your site pages.
<<prev |
1 |
2 |
3 |
4 |
5 |
6 |
next>>
|