The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

2 Pages V  1 2 >  
Reply to this topicStart new topic
> Marquees in CSS, Do they work?
Skibum1
post Nov 21 2012, 04:50 PM
Post #1





Group: Members
Posts: 9
Joined: 21-November 12
Member No.: 18,133



Hello,

I am fairly familiar with html.
I am trying to convert old html marquee code to CSS.
However, I am having trouble getting it to work in any browser.
The below underlined html gives me a message:
"The property is marked invalid because it's not supported by current schema"

If anybody can enlighten me as to this, it would be greatly appreciated...
I have tried different formatting to no avail.


.marquee.scroll {
-webkit-marquee: left medium infinite scroll normal;
overflow-x: -webkit-marquee;
font-size: x-large;
font-family: Arial;
font-weight: bold;
font-style: normal;
font-variant: small-caps;
color: #FFFFFF;
text-decoration: none;
overflow: scroll;
position: inherit;
}

Ken blink.gif
Internet Consultant
Virtech
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Nov 21 2012, 08:00 PM
Post #2


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,731
Joined: 9-August 06
Member No.: 6



Even if you got it to work it would only work in webkit browsers.

Does the element that the selector should match have both the classes .scroll and .marquee?

I haven't looked into this newfangled marquee, but I found this page. Maybe it's of help.
http://davidwalsh.name/webkit-marquee-css
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Skibum1
post Nov 22 2012, 09:38 AM
Post #3





Group: Members
Posts: 9
Joined: 21-November 12
Member No.: 18,133



QUOTE(pandy @ Nov 21 2012, 08:00 PM) *

Even if you got it to work it would only work in webkit browsers.

Does the element that the selector should match have both the classes .scroll and .marquee?

I haven't looked into this newfangled marquee, but I found this page. Maybe it's of help.
http://davidwalsh.name/webkit-marquee-css



Yes , I've tried either way.
I've seen Walsh Blog, but his example has the same problem.

The only way to get the page validated and save the marquee is CSS or JS, Google doesn't like a lot of JS..

The search goes on...
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Nov 22 2012, 11:18 AM
Post #4


.
********

Group: WDG Moderators
Posts: 9,659
Joined: 10-August 06
Member No.: 7



Google shouldn't mind any JS --at least as long as it's not used to hide content (in order to manipulate search engines), or if content is created with it (in which case search engines may fail to index it).

A bigger problem IMO is that marquees are terribly distracting to users, making it very hard to concentrate on the rest of the page.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Nov 22 2012, 11:49 AM
Post #5


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,731
Joined: 9-August 06
Member No.: 6



QUOTE(pandy @ Nov 22 2012, 02:00 AM) *

Does the element that the selector should match have both the classes .scroll and .marquee?

User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Skibum1
post Nov 22 2012, 03:32 PM
Post #6





Group: Members
Posts: 9
Joined: 21-November 12
Member No.: 18,133



QUOTE(Christian J @ Nov 22 2012, 11:18 AM) *

Google shouldn't mind any JS --at least as long as it's not used to hide content (in order to manipulate search engines), or if content is created with it (in which case search engines may fail to index it).

A bigger problem IMO is that marquees are terribly distracting to users, making it very hard to concentrate on the rest of the page.



Thing is the only text is a < to represent a bullet.
It's an old website in internet years, but #1 in Google for years.
After PENGUIN we went from 1 to 7 on page 1 under primary keyword phrase.
After much research and discussions at the new google support site, it was hinted(as usual) that we needed to get into step by validating our pages and losing old links.
We could validate everything but the darn bullet marquee that has kind of been a trademark over the past 10 years.

It was created in Frontpage but of course it's not supported anymore.

I totally agree about marquees being distracting, except in this case.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Nov 22 2012, 03:42 PM
Post #7


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,731
Joined: 9-August 06
Member No.: 6



Would you mind terribly answering my question above? Since you don't show the page I can't look for myself.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Skibum1
post Nov 22 2012, 03:55 PM
Post #8





Group: Members
Posts: 9
Joined: 21-November 12
Member No.: 18,133



QUOTE(pandy @ Nov 22 2012, 03:42 PM) *

Would you mind terribly answering my question above? Since you don't show the page I can't look for myself.




This page has been validated only after marquee was deleted
XHTML 1.0 Transitional
http://www.tuffsteel.com/index.html

This is an older page with the old marquee (created in FP)and no validation.
http://www.tuffsteel.com/FAQ's.html

Does this shed some light on the issue at hand?

smile.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Skibum1
post Nov 22 2012, 04:01 PM
Post #9





Group: Members
Posts: 9
Joined: 21-November 12
Member No.: 18,133



Please note:
I did a lot of corrections on index.html to get it validated.
The only thing I haven't resolved is the marquee, which is why it's not there at this time.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Nov 22 2012, 04:13 PM
Post #10


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,731
Joined: 9-August 06
Member No.: 6



Not if the new marquee thing isn't there.

I'm trying to make sure that the element you use for the CSS marquee really has double classes, or your rule will never work.

This
CODE
.marquee.scroll {...}


would match an element with both the classes "marquee" and "scroll". For example this.

CODE
<div class="scroll marquee">


If that's what you have it's fine. If you have named a class "marquee.scroll" it isn't likely to work.


User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Skibum1
post Nov 24 2012, 03:22 PM
Post #11





Group: Members
Posts: 9
Joined: 21-November 12
Member No.: 18,133



Ok. How bout this?

html:
<td valign="bottom">
<table style="width: 100%">
<tr>
<td class="style37"><span class="marquee">-</span></td>
</tr>
</table>

CSS Code:
.marquee {
overflow: scroll;
font-family: Arial, Helvetica, sans-serif;
font-size: x-large;
font-weight: bold;
font-style: normal;
color: #FFFFFF;

}
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Skibum1
post Nov 24 2012, 03:38 PM
Post #12





Group: Members
Posts: 9
Joined: 21-November 12
Member No.: 18,133



QUOTE(Christian J @ Nov 22 2012, 11:18 AM) *

Google shouldn't mind any JS



Unfortunetly even JS (especially old JS) turns up validation errors..
and right now page validation weighs heavier in Google algorithm than ever before(according to google support)

Here's some error examples(mostly JS) although some can be corrected easily, some can't:
Bottom line is Google has now become an internet cop. Shape up your code or Ship Out....
If anybody good with JS can help, I could get this code to pass validation assuming I can't get it to work with CSS..which is why this thread started to begin with.

------------------------------------------------------------------------------------------
ALine 112, Column 239: an attribute specification must start with a name or name token…w:hidden;background-color:'+tcolour+'"'; if (moStop) tick += ' onmouseover="cp…



An attribute name (and some attribute values) must start with one of a restricted set of characters. This error usually indicates that you have failed to add a closing quotation mark on a previous attribute value (so the attribute value looks like the start of a new attribute) or have used an attribute that is not defined (usually a typo in a common attribute name).

Line 112, Column 239: document type does not allow element "div" here…w:hidden;background-color:'+tcolour+'"'; if (moStop) tick += ' onmouseover="cp…



The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

Line 112, Column 615: document type does not allow element "span" here…th))+"px"; mq.innerHTML='<span id="tx">'+content+'<\/span>'; aw = document.get…



The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

Line 112, Column 627: character "<" is the first character of a delimiter but occurred as data…q.innerHTML='<span id="tx">'+content+'<\/span>'; aw = document.getElementById(…



This message may appear in several cases:
•You tried to include the "<" character in your page: you should escape it as "&lt;"
•You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
•Another possibility is that you forgot to close quotes in a previous tag.

Line 114, Column 9: end tag for "span" omitted, but OMITTAG NO was specified</script>



You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

Line 112, Column 602: start tag was here…parseInt(tWidth))+"px"; mq.innerHTML='<span id="tx">'+content+'<\/span>'; aw =…

This post has been edited by Skibum1: Nov 24 2012, 04:09 PM
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Nov 24 2012, 03:57 PM
Post #13


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,731
Joined: 9-August 06
Member No.: 6



QUOTE(Skibum1 @ Nov 24 2012, 09:22 PM) *

Ok. How bout this?

html:
<td valign="bottom">
<table style="width: 100%">
<tr>
<td class="style37"><span class="marquee">-</span></td>
</tr>
</table>

CSS Code:
.marquee {
overflow: scroll;
font-family: Arial, Helvetica, sans-serif;
font-size: x-large;
font-weight: bold;
font-style: normal;
color: #FFFFFF;

}



What about it? That won't create a marquee and you still haven't answered my question. Which make me think I guessed right about why the marquee thing didn't work in webkit.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Nov 24 2012, 04:01 PM
Post #14


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,731
Joined: 9-August 06
Member No.: 6



QUOTE(Skibum1 @ Nov 24 2012, 09:38 PM) *

QUOTE(Christian J @ Nov 22 2012, 11:18 AM) *

Google shouldn't mind any JS



Unfortunetly even JS (especially old JS) turns up validation errors..
and right now page validation weighs heavier in Google algorithm than ever before(according to google support)

Here's some error examples although some can be corrected easily, some can't:
Bottom line is Google has now become an internet cop. Shape up code or Ship Out.



Google and validation are two different things. If you want help with validation errors show the HTML you are validating. This would be so much quicker if you didn't keep us guessing about everything.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Skibum1
post Nov 24 2012, 04:23 PM
Post #15





Group: Members
Posts: 9
Joined: 21-November 12
Member No.: 18,133



This is the page I am developing for JS marquee,with only 4 errors, mostly JS errors

http://www.tuffsteel.com/index-jsmarquee.html


Code:

[codebox]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="target.ico" type="image/x-icon" />

<title>Target Stands | Hardened Targets | Tuffsteel Mfg</title>
<meta name="description" content=
"Institutional Quality Target Stands-Hardened steel Targets-Direct From Mfg $32.00 & up-IDPA/IPSC Sizes Gov & LE Orders Filled, LE & Instructor Discounts" />
<meta name="keywords" content=
"target stands,target stand,shooting stand,free printable targets,free downloadable targets,conceal carry,CCW, sighting in,hunting,shooting,competition,targets,gun,pistol,law enforcement,rifle,scope,bullet,reloading, hardened targets" />

<style type="text/css">
/*<![CDATA[*/
<!--
.style25 {
border-collapse: collapse;
border-style: solid;
border-width: 2px;
}
.style26 {
border-width: 0px;
}
.style27 {
border-left-style: solid;
border-left-color: inherit;
border-left-width: 0px;
border-right-style: solid;
border-right-color: inherit;
border-right-width: 0px;
border-top-style: solid;
border-bottom-style: solid;
border-bottom-color: inherit;
border-bottom-width: 0px;
}
.style28 {
background-color: #FFFFFF;
}
.style29 {
font-style: italic;
}
.style30 {
text-decoration: none;
}
.style31 {
text-decoration: none;
color: #FF0000;
}
.style33 {
text-transform: uppercase;
}
.style34 {
border-width: 0px;
margin-top: 0px;
}
.style35 {
text-align: left;
}
-->
/*]]>*/
</style>
<link rel="stylesheet" type="text/css" href="index.css" />
<style type="text/css">
/*<![CDATA[*/
body {
background-color: #C0C0C0;
}
body.c24 {TEXT-ALIGN: center}
span.c23 {font-size: 80%}
td.c22 {background-color: #C0C0C0}
td.c21 {background-color: #6699FF}
table.c20 {width: 200px;}
img.c19 {float: right}
table.c18 {BORDER-RIGHT: #000080 5px solid; BORDER-TOP: #000080 5px solid; BACKGROUND: #ffffff; BORDER-LEFT: #000080 5px solid; BORDER-BOTTOM: #000080 5px solid}
span.c17 {font-size: 70%}
span.c16 {background-color: #FFFF00}
div.c15 {text-align: left}
table.c14 {BACKGROUND-POSITION: 0% 0%; BACKGROUND-ATTACHMENT: scroll; BACKGROUND-IMAGE: none; BACKGROUND-REPEAT: repeat; width: 100%;}
p.c13 {font-size: 80%}
p.c12 {text-align: left}
span.c11 {background-color: #FFFF00; font-style:italic}
span.c10 {color: #FF0000}
li.c9 {height: 16px}
h5.c8 {text-align: center}
td.c7 {
border-color: #666666;
background-color: #FFFFFF;
}
div.c6 {text-align: center}
table.c5 {background-color: #808080}
span.c4 {color: #000000; font-family: Arial; font-size: 80%}
span.c3 {color: #000080; font-family: Arial; font-size: 28pt}
span.c2 {color: #FFFFFF; font-size: 150%}
marquee.c1 {font-family: Arial; font-size: 14pt; color: #FFFFFF; font-weight: bold}
/*]]>*/
.style36 {
font-size: medium;
font-weight: bold;
}
</style>
<script type="text/javascript">
var tWidth='800px'; // width (in pixels)
var tHeight='26px'; // height (in pixels)
var tcolour='#808080'; // background colour:
var moStop=false; // pause on mouseover (true or false)
var fontfamily = 'arial,sans-serif'; // font for content
var tSpeed=19; // scroll speed (1 = slow, 5 = fast)

// enter your ticker content here (use \/ and \' in place of / and ' respectively)
var content='<';

var cps=-tSpeed; var aw, mq; var fsz = parseInt(tHeight) - 4; function startticker(){if (document.getElementById) {var tick = '<div style="position:relative;width:'+tWidth+';height:'+tHeight+';overflow:hidden;background-color:'+tcolour+'"'; if (moStop) tick += ' onmouseover="cps=0" onmouseout="cps=-tSpeed"'; tick +='><div id="mq" style="position:absolute;left:0px;top:0px;font-family:'+fontfamily+';font-size:'+fsz+'px;white-space:nowrap;"></div></div>'; document.getElementById('ticker').innerHTML = tick; mq = document.getElementById("mq"); mq.style.left=(10+parseInt(tWidth))+"px"; mq.innerHTML='<span id="tx">'+content+'<\/span>'; aw = document.getElementById("tx").offsetWidth; lefttime=setInterval("scrollticker()",50);}} function scrollticker(){mq.style.left = (parseInt(mq.style.left)>(-10 - aw)) ?
mq.style.left = parseInt(mq.style.left)+cps+"px": parseInt(tWidth)+10+"px";} window.onload=startticker;
</script>

</head>

<body> <table class="c5" style="width: 100%">

<tr>
<td width="87" valign="top"><a href="http://www.tuffsteel.com"><img border="0"
src="images/bullseye_lit_up_sm_clr.gif" width="84" height="84" alt=
"Target Stands,free targets" longdesc=
"images/bullseye_lit_up_sm_clr.gif" /></a></td>

<td valign="bottom"><div id="ticker">
</div><span class=
"c3">Target Stands by Tuffsteel <span class="style36">TM</span></span></td>

<td width="175" valign="top"><a href="http://www.tuffsteel.com"><span class=
"c4"><img height="104" alt="target shooting, handgun training" src=
"images/smit45_firing_casing_eject_lg_clr_26028.gif" width="169" align="right"
border="0" /></span></a></td>
</tr>
</table>

<table border="0" width="100%" cellpadding="5">
<tr>
<td class="c7" valign="top"></td>

<td class="c7" valign="top" width="82%">
<table cellpadding="5" width="100%" border="0">
<tr>
<td class="c7" valign="top">
<table border="0" width="100%" align="left">
<tr>
<td align="left">
<div class="c6">
<table border="0" width="100%">
<tr>
<td align="center">In use by USMC, USCG, TSA , ICE,
DEA, FBI, USFS, USAF, US Army, US Navy, Department
of Homeland Security, NASA & Police Departments in
48 states. <span class=
"style5"><strong><br />
<a href="LE_discount.htm"><span class="style9">POLICE,
INSTUCTOR, VETS & ACTIVE DUTY DISCOUNTS</span></a>-</strong></span><span class="style28">We
have the ability to fill</span> <span class="style9">
LARGE ORDERS</span><span class="style28">.</span>
Government VISA/MC accepted. <a href="FPO/FPO.html"><span class="style9">
FPO/APO Shipping Available</span></a><br />
<a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
SEE All PRODUCTS</a><br />
<a target="_blank" href=
"http://www.governmentcontractors.org/"><img src=
"images/ccrregistered.gif" width="120" height="30" border="0"
alt=
"National Association of Government Contractors" /></a><br />
  BEST QUALITY-BEST VALUESINCE 1999<br />
Family Owned & Operated<br />
<a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS"
target="_blank"><img border="0" src=
"images/targetstand500x.jpg" width="500" height="211" alt=
"Target Stands,target stand" /></a></td>
</tr>
</table>
</div>

<h5 class="c8"><a target="_blank" href="sitemap/sitemap.html">
Site Map</a><br />
Because Practice Makes Perfect.....Sense <span class=
"style13">TM</span></h5>

<h5 class="c8"><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
See All Products</a><br />
All orders manufactured to your configuration</h5>

<p>Are you are tired of putting targets up on old <a target="_blank"
href="beat_up.htm">dilapidated target stands</a>?<br />
Are you tired of having high paid personnel spend time
building target stands?<br />
Then this windproof, freestanding, stake-able and stackable
shooting stand is what you are looking for. Takes seconds to
set up and take down. Lightweight-5.5 lbs. Almost impossible
to damage! .</p>

<p><a href="guarantee.htm">Lifetime Guarantee Free
Replacement</a><br />
<a href="torture_test.htm">Torture Test</a><br />
<a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
See All Products</a><br />
<a href="dealers.html">Dealer Info</a><br />
<a target="_blank" href=
"http://phoenixtacticalsolutions.com/videos/">See our stands
on the training course(Videos)</a></p>

<ul>
<li>Specially designed to <a href="images/14stack.gif" target=
"_blank">stack</a> easily(Store as many as you want in a
2-3 foot square area) Very important if several need to
be stored.</li>

<li>No parts to lose or keep track of.</li>

<li>Protective end caps protect from damage to vehicle
interiors and humans</li>

<li>Set up unlimited configurations for competitive
shooting.</li>

<li><a href="DVD/html/index.htm">
<img height="18" src=
"images/new.jpg" width="30" border="0" alt="IPSC" /></a> <a href=
"IDPAstand.html" target="_blank" class="style30"></a><a class=
"style31" href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?cart_id=3008815.25427&p_id=00501&xm=on"
target="_blank">New Locking Model-Lock those pesky furring
strips in, once and for all</a><a class="style31" href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?cart_id=3008815.25427&p_id=00501&xm=on"
target="_blank">-click here</a></li>

<li>Different colors available.</li>

<li class="c9">Ideal for quarterly qualifications.</li>

<li class="c9">Terms available to <a href="#terms">LE.*</a></li>

<li><span>Lightweight</span> for easy deployment at 5.5
lbs.(Pro Range 22, less for other models)</li>

<li>2 sizes available. 22" & 18" (both work for paper
targets of all sizes)</li>

<li>18" model specifically designed for <a href=
"IDPAstand.html">IDPA/IPSC</a> competition
shooting(cardboard cutout targets).</li>

<li>Every stand is painted with <a href="primer.html">
industrial red primer</a>-You paint to suit (or not)
Custom colors painted over primer-never bare steel-(<a href="primer.html">Why
is this important</a>?)  See the <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
order page</a> for details.</li>

<li>Not Available in stores</li>

<li>Not a part-time venture.</li>

<li>Simple <span>Freestanding one piece design</span> 
with no pieces to lose.</li>

<li>Employs <em>'Relief Stability Technology' <span class=
"style18">TM</span></em> <span class="style19">for better
stability</span></li>

<li>Low profile <span>heavy duty steel.</span> Sturdiest
stand of this type available.</li>

<li>Institutional Duty quality. Extra heavy digital welds.
Can be bolted to concrete floors.</li>

<li><a target="_blank" href="Equipment.html">Machined
pieces</a>
for more precise fit. (<a href="weldedjoints.html">Why is
fit important</a>?)</li>

<li>Each is handmade by an American in the USA!</li>

<li><span>Stake-able legs</span> make this a Windproof
target stand</li>

<li>Ideal for <span><a href="IDPAstand.html"></a>CCW
training<span class="style17">, Military</span><a href=
"IDPAstand.html"></a>, <a href=
"IDPAstand.html"></a>IPSC<span class="style17">, IDPA</span><a href="IDPAstand.html"></a><span class="style17">,
NRA and Cowboy Action</span> <a href="IDPAstand.html"></a><span class=
"style17">.</span></span></li>

<li>Lifetime supply of free <a href="Targets.html">online
targets</a></li>

<li>Use the cardboard box for your first set-ups.</li>

<li>Every stand is primer coated -You paint to suit (or
not) We charge $6.00 for a custom color. See the <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
order page</a> for details.</li>

<li><a href="Equipment.html">Digitally MiG Welded</a></li>

<li>No special targets or accessories to buy- No parts to
keep track of. </li>

<li>Uses 2- 1x2 furring strips for target frame (not
included)</li>

<li>Takes almost any size target limited only by the size
cardboard backing you use.</li>

<li><a href="DVD/html/index.htm">
<img height="18" src=
"images/new.jpg" width="30" border="0" alt="hardened steel" /></a> <a target="_blank"
href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?cart_id=3226657.7449&product=TARGETS&xm=on">
<span class="c10">HARDENED STEEL PLATE</span></a></li>

<li><a href="DVD/html/index.htm">
<img height="18" src=
"images/new.jpg" width="30" border="0" alt="dual purpose" /></a> <a href=
"dualpurpose.html" target="_blank"><span class="c10">Dual
Purpose Model now available</span></a></li>

<li><a href="DVD/html/index.htm">
<img height="18" src=
"images/new.jpg" width="30" border="0" alt="locking model" /></a> <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?cart_id=1281128.27658&p_id=00402&xm=on"
target="_blank"><span class="c10">Locking Model now
available</span></a></li>

<li><a href="DVD/html/index.htm">
<img height="18" src=
"images/new.jpg" width="30" border="0" alt="Spinner targets" /></a> <a target="_blank"
href="spinner.html"><span class="c10">Ultimate Spinner
Target now available</span></a> (9/11/11)</li>

<li><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS"
class="style17">SEE ALL PRODUCTS</a></li>

<li><a href="torture_test.htm">Torture Test</a></li>

<li>2 year guarantee</li>
</ul>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
See all products</a></p>

<div class="c15">
<table border="0" width="100%">
<tr>
<td align="center">
<table id="oTBL164151881" cellspacing="0" cellpadding="2"
class="style27 c14">
<tr>
<td valign="top" class="style35">
<p class="c12">"<span class="c11">I received
my stands today. I just wanted to say 'thank
you'. I'm really pleased that a good
American company, in my own state, is
producing such a high quality product. I
showed them to a neighbor who is a welder in
the oil fields. He was highly impressed. He
could not believe the value for the money"</span></p>

<p class="c12"><span class="c11">Matt
Chambers-Grand Junction, CO<br /></span></p>
<hr />

<p class="c13"><em><strong><span class="style9">
"Thanks guys, I appreciate it and so will
the Scouts. I saw your product at an
instructor training session last Sat and was
blown away. The stands worked perfectly,
stacked compactly, staked down fine even
during a howling wind, etc, etc. The
simplicity of the design and their
effectiveness won me over so I ordered
enough for a full range setup. I was going
down the path of using a-frames and small
rope, but this is 10 times simpler and more
durable."</span></strong></em></p>

<p class="c13"><em><strong><span class="style9">
Stephen Harpham-Littleton, CO</span></strong></em></p>

<p class="style29 c12"><a href="testimonials.html">
More testimonials</a></p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div> <br />
<br />
<a href="DVD/html/index.htm">
<img height="18" src="images/new.jpg"
width="30" border="0" alt="IDPA" /></a> <a href="IDPAstand.html" target=
"_blank"><span class="c10">IDPA/IPSC size model</span></a>
 <br />
<a href="DVD/html/index.htm">
<img height="18" src="images/new.jpg"
width="30" border="0" alt="dual purpose" /></a> <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?cart_id=1281128.27658&p_id=00302&xm=on"
target="_blank"><span class="c10">Dual Purpose Model now
available</span></a><br />
<a href="DVD/html/index.htm">
<img height="18" src="images/new.jpg"
width="30" border="0" alt="taegetstands" /></a> <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?cart_id=1281128.27658&p_id=00402&xm=on"
target="_blank"><span class="c10">Locking Model now
Available</span></a><br />
<a href="DVD/html/index.htm">
<img height="18" src="images/new.jpg"
width="30" border="0" alt="target stands" /></a> <a target="_blank" href=
"spinner.html"><span class="c10">Ultimate Spinner Target now
available</span></a> (9/11/11)<br />
<a href="feeds/index.htm">Check out our new Homeland
Security Feeds</a>

<h3>Shooting Solutions</h3>

<p><br />
Target shooting has been a problem since man invented the
sling shot. How can you secure your target, what method is
the most effeciant, how can you shoot without collatoral
damage, how can you record your results.<br />
<br />
You probably shoot in some pretty barren and windy areas
with only rocks, trash or the occasional crow to shoot at.
We have spent many an afternoon shooting in windy weather in
the mountains. Our problem now is having to wait while other
shooters go out to re-erect their blown down targets!<br />
<br />
There are many stands on the market so why would you want
this one? Simple. It's Made in America , 100% dependable
heavy duty design. No special hardware or pieces to keep
track of. No special targets to buy. It has a Lifetime
Guarantee and the price is right. <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
View Products</a>  See <a href="torture_test.htm">
Torture Test</a></p>

<h3>Value</h3>

<p>Since we are the manufacturer, we can offer wholesale
prices starting at $32.50. If you had a local fabrication
shop make these, they would cost at least $65 apiece.
Additionally, this is a stand you should never need to
replace. Target stand manufacturers base their business on
the fact that the stands they sell have to be replaced
eventually. These stands are designed to last a
lifetime....period.<a href="guarantee.htm"></a></p>

<p>Is  your department paying highly paid personnel to
build and repair target stands? If the answer is yes, you
are wasting valuable human resources</p>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Click here for Order Page</a></p>

<h3>Stability</h3>

<p>Plus, for more stability these stands have supports that
are longer("20) and legs that are drilled for staking in
windy weather. The "18 inch models still have "20 legs. We
even <a target="_blank"
href="Equipment.html">machine the center pieces</a> for a
more precise fit</p>

<h3>Versatility</h3>

<p>When you are at a public range, there is usually not the
freedom to change distances easily. This is crucial for
effective training. Now you can stay on the "common" firing
line and still change distances easily without risking your
life. They are excellent for multiple target acquisition
when placed strategically on a course.<a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">Order
Now</a><br />
<br />
<a href="DVD/html/index.htm">
<img height="18" src="images/new.jpg"
width="30" border="0" alt="targets" /></a> <a href="IDPAstand.html" target=
"_blank"><span class="c10">IDPA/IPSC size model available</span></a></p>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Click here for Order Page</a><br />
<br />
Simple, dependable, heavy duty, light weight and best of
all, it works for any kind of paper target. You can also
staple silhouette cut-outs directly to the furring strips.<br />
<br />
The stand is constructed of <a href="Equipment.html">
Digitally MiG welded</a> , 16 & 11 gauge(not 18) high
quality hot-rolled square steel tubing-not angle iron.. It
is designed to hold 1"x2" furring strips as the uprights for
the targets (see pics). Shoot many targets of all sizes and
shapes before the cardboard or the furring strips need to be
replaced.</p>

<p>The <a href="Prorangemodel.htm" target="_blank">Pro Range
Model</a> has thicker walled uprights for a more wobble free
furring strip fit. <a href="Prorangemodel.htm" target="_blank">
Click here for picture</a><br />
<br />
The overall size is 24" wide by 6" high with 20" legs for
superior stability, especially when freestanding. Distance
between uprights is 22". When using 4 ft. furring strips, <a href=
"images/splayed.gif">targets 18" up to 36" wide</a> can be
accommodated. The legs are drilled to allow for staking in
windy weather.<br />
<br />
The low profile makes it almost impossible to damage the
stand itself. You have to be a really bad shot (or good
shot) to hit the permanent frame.<br />
<br />
The stands weigh about 5-6 lbs. depending on model. We paint
them with a generous coat of industrial strength red oxide
primer, so they are ready for painting if desired . We
charge $5.00 for a custom color. See the <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
order page</a> for details This is painted over the primer
coat, not on bare metal.</p>

<p>We have also designed them to drain water from the
uprights if for some reason they are left out in the rain.</p>

<p>Furring strips cost about $.75 each (8' sections)if you
can't pick them up for free somewhere. They are used for
just about everything on construction sites and can be cut
to height for individual shooting conditions and/or styles.<br />
<br />
For hunting rifle sight-ins we recommend 3 to 4 ft. For
handgun defense practice a little higher, 4-5 ft.<br />
<br />
The 1"x2" wood furring strips (not included)usually take
quite a pounding before they expire. We've gone many hours
of intense
<a href="Training.html">defensive handgun practice</a>
without having to replace them. (About 500 rounds per
person/per day).</p>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Order Now</a></p>

<p><a href="DVD/html/index.htm">
<img height="18" src="images/new.jpg"
width="30" border="0" alt="targets" /></a> <a href="IDPAstand.html" target=
"_blank"><span class="c10">IDPA/IPSC size model now
available</span></a></p>

<p> </p>

<table width="69%" border="0">
<tr>
<td></td>

<td>
<p>Tuffsteel  Manufacturing<br />
P.O. Box 698<br />
Dillon, CO 80435</p>
</td>

<td width="149"><span class="c16">Family owned and
operated since 1996</span></td>
</tr>
</table><br />
Inquiries or orders please call 970-513-9371<br />
<br />
<span class="c16">No pick-ups unless otherwise authorized in
advance. We do not have a retail showroom. (Another way to
keep costs down.)</span>

<p><span class="style9">I<span class="style33">f you feel
uncomfortable ordering online,  feel free to call. If
we are not in the office,  we are PROBABLY in the shop.
leave a short message AND we'll call you back USUALLY within
30-60 minutes.</span></span></p>

<p><span class="style9"><span class="style33">We do not
process credit cards on this website.</span></span></p>

<ul>
<li><a href="TuffSteel%20Fax.pdf" target="_blank"><span class=
"c16">Printable order form for faxing</span></a></li>

<li><a href="Targets.html"><span class="c16">Free
Printable Targets</span></a></li>

<li><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
<span class="c16">Order online</span></a></li>
</ul>

<p><a name="terms" id="terms"></a>*State , county, or local.</p>

<form method="get" action="http://sitelevel.whatuseek.com/query.go"
target="_self">
<table border="2" cellspacing="0" cellpadding="0">
<tr>
<td width="100%">
<table cellspacing="0" cellpadding="2" border="0">
<tr>
<td align="left" valign="middle" nowrap="nowrap">
<span><small><b>Search</b></small></span></td>

<td align="center" valign="middle" nowrap="nowrap">
<span><select name="crid" size="1">
<option value="web">
The Web
</option>

<option selected="selected" value="5869af89066495ed">
This Site
</option>
</select></span></td>

<td align="center" valign="middle" nowrap="nowrap">
<span class="c17">for</span></td>

<td align="center" valign="middle" nowrap="nowrap">
<input type="text" name="query" size="17" value=""
maxlength="100" /></td>

<td valign="middle" align="right"><input type="submit"
value="Search" name="B1" /></td>
</tr>

<tr>
<td align="center" colspan="5"><a href=
"http://sitelevel.whatuseek.com?synd=box&chan=4"><span>
<small><small>Get a Free Search Engine for Your
Web Site</small></small></span></a></td>
</tr>
</table>
</td>
</tr>
</table>
</form> 

<p>This <a target="_blank" href="http://www.2asisters.org/">
Second Amendment Sisters Inc.</a> <a target="_blank" href=
"http://www.ringsurf.com">RingSurf</a> site owned by <a href=
"mailto:shootwell@tuffsteel.com">Tuffsteel.com</a>.<br />
[<a target="_blank" href=
"http://www.ringsurf.com/netring?ring=SASinc;id=180;action=next">Next</a>|
<a target="_blank" href=
"http://www.ringsurf.com/netring?ring=SASinc;id=180;action=skip">
Skip Next</a>| <a target="_blank" href=
"http://www.ringsurf.com/netring?ring=SASinc;id=180;action=next5">
Next 5 Sites</a>| <a target="_blank" href=
"http://www.ringsurf.com/netring?ring=SASinc;action=list">
List Sites</a>| <a target="_blank" href=
"http://www.ringsurf.com/netring?ring=SASinc;action=addform">
Join!</a>]</p>
</td>
</tr>

<tr>
<td align="left"></td>
</tr>
</table>
</td>

<td valign="top" width="34%" class="style10 c7">
<div class="c6">
<table cellspacing="0" cellpadding="0" width="100%" border="0">
<tr>
<td class="sohotext" valign="top" align="center" width="30%">
Free Standing<br />
<a href="qualifyingtarget.html"><img border="0" src=
"images/qualifytarget120x.jpg" width="120" height="247" alt=
"B-21 qualifying target" /></a><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS"><img alt="B-21 Reduced"
src="images/ts11-2006.jpg" width="111" height="246" class=
"style34" /></a><br />
Pro Range "22<br />

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Order Now</a><br />
<a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
See all products</a><br /></p>

<table id="oTBL19590414" class="c18" cellspacing="0" cellpadding=
"2" width="70%">
<tr>
<td valign="top" align="center">
 FREE STUFF (below)<br />
<br />
<a href="video_news/video_news_index.htm">
<img height="18"
src="images/new.jpg" width="30" border="0" alt="targets" />
Video News </a><br />
<br />
<a href="Targets.html" target="_blank">Printable
Targets</a><br />
<br />
<a href="Ballistics/bullfly/index.htm">How do
bullets fly?</a><br />
<span class="style18">(A comprehensive study)<br />
<br />
<a href="Targets.html" target="_blank">NEW! Poker
Hand Shooting</a></span>

<p><a href="DVD/html/index.htm">
<img height="18" src=
"images/new.jpg" width="30" border="0" alt="target stand" /></a><br />
<a target="_blank" href="map.htm">Free Topo Maps</a> <a href=
"DVD/html/compreloading.htm"></a></p>

<p><a href="Ballistics/PointBlank.exe" target=
"_blank">Ballistic Software</a></p>

<p><a href="LE_discount.htm#Range%20Photos">Free
Target Stands</a><br />
<br />
<a href="Ballistics_resource_page.html">Ballistics
Resources</a></p>

<p><a href="Ballistics/Factory_Ammo/index.html">
Factory Ammo Data</a></p>

<p><a href="videos.htm">Videos</a><br />
<br />
<a href="games/Tank.htm">Play 'Tank'</a></p>

<p><a href="glock_id_page.htm">Glock ID Page</a></p>

<p><a href="gamelist.htm">Free Games</a></p>

<p><a href="recipes/index.htm">Wildlife Recipes</a></p>

<p><a href="articles.htm">Articles</a></p>

<p><a href="safetyrules.htm" target="_blank">Safety
Rules</a></p>

<p><a href="guarantee.htm">Lifetime Guarantee Free
Replacement</a></p>
</td>
</tr>
</table>

<table cellpadding="6" class="style25 c20">
<tr>
<td>
<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
<img height="49" src="images/made_in_the_usa_text_sm_clr.gif"
width="91" border="0" class="c19" alt="made in usa" /></a>No
off-shore outsourcing!<br />
Each stand is handmade by an American patriot, with
US steel.<br />
<img height="156" src=
"images/animation/statue_of_liberty_gun_look_lg_clr.gif"
width="91" align="right" border="0" alt=
"Please Keep America Free" /><br /></p>

<p>Keep America strong.<br /></p>

<p>It's the only country we have...</p>
</td>
</tr>
</table>

<p>Mr. Watermelon meets Mr. 308 <br /></p>

<p><object id="media1" height="200" type="video/x-ms-wmv" width=
"200">
<param name="filename" value=
"video_news/watermelonbranded.wmv" />
</object></p>

<p><a href="video_news/video_news_index.htm">More video
news</a></p>

<p><br />
Stake-able<br />
 <img border="0" src="images/stakeable2.jpg" width="112"
height="162" alt="wind proof" /></p>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Order Now</a></p>

<p>
<img height="105" src="images/moneybacklogo.gif" width="142"
border="0" alt="Money Back" /></p>

<p>Stack-able</p>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
<img height="141" src="images/14stack.gif" width="190" border="0"
alt="stack-able and space saving" /></a><br />
"This is the last target stand you'll ever need to buy"<br />
<a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Order Now</a></p>
</td>
</tr>
</table>

<table width="100%" border="0">
<tr>
<td align="center"><a href="At_sea.htm" target="_blank">
<img height=
"53" src="images/atsea_small.gif" width="115" border="0" alt="target shooting at sea" /></a><br />
Coastal Defense Practice</td>
</tr>
</table><br />
<em><span class="style9">"You better get him with the first shot
because rarely will you</span></em> <em><span class="style9">get
a second"</span></em>
</div>

<p><br /></p>

<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<p><span class="c16"><em>"We make'm stronger than they need
to be"</em></span></p>
</td>
</tr>
</table>

<p><a href="guarantee.htm">Our Guarantee</a></p>

<p><a href="feeds/index.htm">Check out our new Homeland Security
Feeds</a></p>

<p>"<em>Everything you need, nothing you don't"</em><br /></p>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Order Now</a><br />
<a href="IDPAstand.html"><img alt="ipsc target frame" src="images/ipsc.jpg"
width="200" height="497" class="style26" /></a><br /></p>

<p><a target="_blank" href="Books/shesgotagun.htm">More info</a><br />
<br /></p>

<p> </p>

<p> </p>
</td>
</tr>
</table>
</td>

<td valign="top" width="15%" class="style35 c22">
<table border="0" width="150">
<tr>
<td align="center">
<table border="0" width="140">
<tr>
<td align="center">
<script type="text/javascript">
//<![CDATA[
<!-- Begin
var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)
year = year + 1900;
document.write("<center>" + lmonth + " ");
document.write(date + ", " + year + "<\/center>");
// End -->
//]]>
</script>
</td>
</tr>
</table>

<table border="0" width="150">
<tr>
<td align="center">
<table border="4" width="140" cellspacing="20" cellpadding="4">
<tr>
<td class="c21" height="25">
<p><a href="About_Us.html">About Us</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="FAQ's.html">FAQ's</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="ContactUs.html">Contact Us</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="Privacy_Policy.html">Privacy Policy</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a target="_blank" href=
"https://www.tuffsteel.com/store/agoracart55/agora.cgi?dc=1&cart_id=3226657.7449&product=TARGETSTANDS%00TARGETSTANDS%00TARGETSTANDS">
Shopping Cart</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="Targets.html">Targets</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Store</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a target="_blank" href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Order</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="Ballistics_resource_page.html">Ballistics</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="dealers.html">Dealer Info</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="index_copy(2).html">Home</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="Links.html">Links</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="articles.htm" target="_top">Articles</a></p>
</td>
</tr>
</table>

<p>For best viewing of this site please disable your pop-up
blocker</p>

<table border="0" width="100%">
<tr>
<td align="left">
<img height="85" src="images/MCVisa4jpg.jpg"
width="47" border="0" alt="VISA?mastercard" /><img alt="PayPal" src=
"images/verification_seal.gif" /></td>
</tr>
</table>
</td>
</tr>
</table>

<table border="0" width="140">
<tr>
<td align="center"><img height="63" alt="SSL Certificate Authority"
src="images/comodosquare_70pixels.gif" width="70" /><br />
SSL Certificate Authority<br />
Order with confidence</td>
</tr>
</table>

<table border="0" width="140">
<tr>
<td>
<table border="0" width="140">
<tr>
<td align="center" width="149"><a onclick=
"(document.all) ? window.external.addFavorite(location.href, document.title) : window.alert('Press<CTRL+D > to bookmark this page.');"
href="#">Add this page to your favorites menu.</a></td>
</tr>
</table>
</td>
</tr>
</table>

<table border="0" width="140">
<tr>
<td align="center">
<script type="text/javascript" language="JavaScript">
//<![CDATA[

<!-- This script and many more are[/codebox]

This post has been edited by Christian J: Nov 24 2012, 06:04 PM
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Skibum1
post Nov 24 2012, 04:27 PM
Post #16





Group: Members
Posts: 9
Joined: 21-November 12
Member No.: 18,133



This the page that passed validation with the CSS Marquee I can't get to work.

http://www.tuffsteel.com/cssmarquee.html

I HOPE I AM BEING CLEAR...

[codebox]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="target.ico" type="image/x-icon" />

<title>Target Stands | Hardened Targets | Tuffsteel Mfg</title>
<meta name="description" content=
"Institutional Quality Target Stands-Hardened steel Targets-Direct From Mfg $32.00 & up-IDPA/IPSC Sizes Gov & LE Orders Filled, LE & Instructor Discounts" />
<meta name="keywords" content=
"target stands,target stand,shooting stand,free printable targets,free downloadable targets,conceal carry,CCW, sighting in,hunting,shooting,competition,targets,gun,pistol,law enforcement,rifle,scope,bullet,reloading, hardened targets" />

<style type="text/css">
/*<![CDATA[*/
<!--
.style25 {
border-collapse: collapse;
border-style: solid;
border-width: 2px;
}
.style26 {
border-width: 0px;
}
.style27 {
border-left-style: solid;
border-left-color: inherit;
border-left-width: 0px;
border-right-style: solid;
border-right-color: inherit;
border-right-width: 0px;
border-top-style: solid;
border-bottom-style: solid;
border-bottom-color: inherit;
border-bottom-width: 0px;
}
.style28 {
background-color: #FFFFFF;
}
.style29 {
font-style: italic;
}
.style30 {
text-decoration: none;
}
.style31 {
text-decoration: none;
color: #FF0000;
}
.style33 {
text-transform: uppercase;
}
.style34 {
border-width: 0px;
margin-top: 0px;
}
.style35 {
text-align: left;
}
-->
/*]]>*/
</style>
<link rel="stylesheet" type="text/css" href="index.css" />
<style type="text/css">
/*<![CDATA[*/
body {
background-color: #C0C0C0;
}
body.c24 {TEXT-ALIGN: center}
span.c23 {font-size: 80%}
td.c22 {background-color: #C0C0C0}
td.c21 {background-color: #6699FF}
table.c20 {width: 200px;}
img.c19 {float: right}
table.c18 {BORDER-RIGHT: #000080 5px solid; BORDER-TOP: #000080 5px solid; BACKGROUND: #ffffff; BORDER-LEFT: #000080 5px solid; BORDER-BOTTOM: #000080 5px solid}
span.c17 {font-size: 70%}
span.c16 {background-color: #FFFF00}
div.c15 {text-align: left}
table.c14 {BACKGROUND-POSITION: 0% 0%; BACKGROUND-ATTACHMENT: scroll; BACKGROUND-IMAGE: none; BACKGROUND-REPEAT: repeat; width: 100%;}
p.c13 {font-size: 80%}
p.c12 {text-align: left}
span.c11 {background-color: #FFFF00; font-style:italic}
span.c10 {color: #FF0000}
li.c9 {height: 16px}
h5.c8 {text-align: center}
td.c7 {
border-color: #666666;
background-color: #FFFFFF;
}
div.c6 {text-align: center}
table.c5 {background-color: #808080}
span.c4 {color: #000000; font-family: Arial; font-size: 80%}
span.c3 {color: #000080; font-family: Arial; font-size: 28pt}
span.c2 {color: #FFFFFF; font-size: 150%}
marquee.c1 {font-family: Arial; font-size: 14pt; color: #FFFFFF; font-weight: bold}
/*]]>*/
.style36 {
font-size: medium;
font-weight: bold;
}
.style37 {
text-align: right;
}
</style>
</head>

<body> <table class="c5" style="width: 100%">
<tr>
<td width="87" valign="top"><a href="http://www.tuffsteel.com"><img border="0"
src="images/bullseye_lit_up_sm_clr.gif" width="84" height="84" alt=
"Target Stands,free targets" longdesc=
"images/bullseye_lit_up_sm_clr.gif" /></a></td>

<td valign="bottom"> <table style="width: 100%">
<tr>
<td class="style37"><span class="marquee">-</span></td>
</tr>
</table>
<span class=
"c3">Target Stands by Tuffsteel <span class="style36">TM</span></span></td>

<td width="175" valign="top"><a href="http://www.tuffsteel.com"><span class=
"c4"><img height="104" alt="target shooting, handgun training" src=
"images/smit45_firing_casing_eject_lg_clr_26028.gif" width="169" align="right"
border="0" /></span></a></td>
</tr>
</table>

<table border="0" width="100%" cellpadding="5">
<tr>
<td class="c7" valign="top"></td>

<td class="c7" valign="top" width="82%">
<table cellpadding="5" width="100%" border="0">
<tr>
<td class="c7" valign="top">
<table border="0" width="100%" align="left">
<tr>
<td align="left">
<div class="c6">
<table border="0" width="100%">
<tr>
<td align="center">In use by USMC, USCG, TSA , ICE,
DEA, FBI, USFS, USAF, US Army, US Navy, Department
of Homeland Security, NASA & Police Departments in
48 states. <span class=
"style5"><strong><br />
<a href="LE_discount.htm"><span class="style9">POLICE,
INSTUCTOR, VETS & ACTIVE DUTY DISCOUNTS</span></a>-</strong></span><span class="style28">We
have the ability to fill</span> <span class="style9">
LARGE ORDERS</span><span class="style28">.</span>
Government VISA/MC accepted. <a href="FPO/FPO.html"><span class="style9">
FPO/APO Shipping Available</span></a><br />
<a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
SEE All PRODUCTS</a><br />
<a target="_blank" href=
"http://www.governmentcontractors.org/"><img src=
"images/ccrregistered.gif" width="120" height="30" border="0"
alt=
"National Association of Government Contractors" /></a><br />
  BEST QUALITY-BEST VALUESINCE 1999<br />
Family Owned & Operated<br />
<a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS"
target="_blank"><img border="0" src=
"images/targetstand500x.jpg" width="500" height="211" alt=
"Target Stands,target stand" /></a></td>
</tr>
</table>
</div>

<h5 class="c8"><a target="_blank" href="sitemap/sitemap.html">
Site Map</a><br />
Because Practice Makes Perfect.....Sense <span class=
"style13">TM</span></h5>

<h5 class="c8"><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
See All Products</a><br />
All orders manufactured to your configuration</h5>

<p>Are you are tired of putting targets up on old <a target="_blank"
href="beat_up.htm">dilapidated target stands</a>?<br />
Are you tired of having high paid personnel spend time
building target stands?<br />
Then this windproof, freestanding, stake-able and stackable
shooting stand is what you are looking for. Takes seconds to
set up and take down. Lightweight-5.5 lbs. Almost impossible
to damage! .</p>

<p><a href="guarantee.htm">Lifetime Guarantee Free
Replacement</a><br />
<a href="torture_test.htm">Torture Test</a><br />
<a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
See All Products</a><br />
<a href="dealers.html">Dealer Info</a><br />
<a target="_blank" href=
"http://phoenixtacticalsolutions.com/videos/">See our stands
on the training course(Videos)</a></p>

<ul>
<li>Specially designed to <a href="images/14stack.gif" target=
"_blank">stack</a> easily(Store as many as you want in a
2-3 foot square area) Very important if several need to
be stored.</li>

<li>No parts to lose or keep track of.</li>

<li>Protective end caps protect from damage to vehicle
interiors and humans</li>

<li>Set up unlimited configurations for competitive
shooting.</li>

<li><a href="DVD/html/index.htm">
<img height="18" src=
"images/new.jpg" width="30" border="0" alt="IPSC" /></a> <a href=
"IDPAstand.html" target="_blank" class="style30"></a><a class=
"style31" href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?cart_id=3008815.25427&p_id=00501&xm=on"
target="_blank">New Locking Model-Lock those pesky furring
strips in, once and for all</a><a class="style31" href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?cart_id=3008815.25427&p_id=00501&xm=on"
target="_blank">-click here</a></li>

<li>Different colors available.</li>

<li class="c9">Ideal for quarterly qualifications.</li>

<li class="c9">Terms available to <a href="#terms">LE.*</a></li>

<li><span>Lightweight</span> for easy deployment at 5.5
lbs.(Pro Range 22, less for other models)</li>

<li>2 sizes available. 22" & 18" (both work for paper
targets of all sizes)</li>

<li>18" model specifically designed for <a href=
"IDPAstand.html">IDPA/IPSC</a> competition
shooting(cardboard cutout targets).</li>

<li>Every stand is painted with <a href="primer.html">
industrial red primer</a>-You paint to suit (or not)
Custom colors painted over primer-never bare steel-(<a href="primer.html">Why
is this important</a>?)  See the <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
order page</a> for details.</li>

<li>Not Available in stores</li>

<li>Not a part-time venture.</li>

<li>Simple <span>Freestanding one piece design</span> 
with no pieces to lose.</li>

<li>Employs <em>'Relief Stability Technology' <span class=
"style18">TM</span></em> <span class="style19">for better
stability</span></li>

<li>Low profile <span>heavy duty steel.</span> Sturdiest
stand of this type available.</li>

<li>Institutional Duty quality. Extra heavy digital welds.
Can be bolted to concrete floors.</li>

<li><a target="_blank" href="Equipment.html">Machined
pieces</a>
for more precise fit. (<a href="weldedjoints.html">Why is
fit important</a>?)</li>

<li>Each is handmade by an American in the USA!</li>

<li><span>Stake-able legs</span> make this a Windproof
target stand</li>

<li>Ideal for <span><a href="IDPAstand.html"></a>CCW
training<span class="style17">, Military</span><a href=
"IDPAstand.html"></a>, <a href=
"IDPAstand.html"></a>IPSC<span class="style17">, IDPA</span><a href="IDPAstand.html"></a><span class="style17">,
NRA and Cowboy Action</span> <a href="IDPAstand.html"></a><span class=
"style17">.</span></span></li>

<li>Lifetime supply of free <a href="Targets.html">online
targets</a></li>

<li>Use the cardboard box for your first set-ups.</li>

<li>Every stand is primer coated -You paint to suit (or
not) We charge $6.00 for a custom color. See the <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
order page</a> for details.</li>

<li><a href="Equipment.html">Digitally MiG Welded</a></li>

<li>No special targets or accessories to buy- No parts to
keep track of. </li>

<li>Uses 2- 1x2 furring strips for target frame (not
included)</li>

<li>Takes almost any size target limited only by the size
cardboard backing you use.</li>

<li><a href="DVD/html/index.htm">
<img height="18" src=
"images/new.jpg" width="30" border="0" alt="hardened steel" /></a> <a target="_blank"
href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?cart_id=3226657.7449&product=TARGETS&xm=on">
<span class="c10">HARDENED STEEL PLATE</span></a></li>

<li><a href="DVD/html/index.htm">
<img height="18" src=
"images/new.jpg" width="30" border="0" alt="dual purpose" /></a> <a href=
"dualpurpose.html" target="_blank"><span class="c10">Dual
Purpose Model now available</span></a></li>

<li><a href="DVD/html/index.htm">
<img height="18" src=
"images/new.jpg" width="30" border="0" alt="locking model" /></a> <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?cart_id=1281128.27658&p_id=00402&xm=on"
target="_blank"><span class="c10">Locking Model now
available</span></a></li>

<li><a href="DVD/html/index.htm">
<img height="18" src=
"images/new.jpg" width="30" border="0" alt="Spinner targets" /></a> <a target="_blank"
href="spinner.html"><span class="c10">Ultimate Spinner
Target now available</span></a> (9/11/11)</li>

<li><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS"
class="style17">SEE ALL PRODUCTS</a></li>

<li><a href="torture_test.htm">Torture Test</a></li>

<li>2 year guarantee</li>
</ul>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
See all products</a></p>

<div class="c15">
<table border="0" width="100%">
<tr>
<td align="center">
<table id="oTBL164151881" cellspacing="0" cellpadding="2"
class="style27 c14">
<tr>
<td valign="top" class="style35">
<p class="c12">"<span class="c11">I received
my stands today. I just wanted to say 'thank
you'. I'm really pleased that a good
American company, in my own state, is
producing such a high quality product. I
showed them to a neighbor who is a welder in
the oil fields. He was highly impressed. He
could not believe the value for the money"</span></p>

<p class="c12"><span class="c11">Matt
Chambers-Grand Junction, CO<br /></span></p>
<hr />

<p class="c13"><em><strong><span class="style9">
"Thanks guys, I appreciate it and so will
the Scouts. I saw your product at an
instructor training session last Sat and was
blown away. The stands worked perfectly,
stacked compactly, staked down fine even
during a howling wind, etc, etc. The
simplicity of the design and their
effectiveness won me over so I ordered
enough for a full range setup. I was going
down the path of using a-frames and small
rope, but this is 10 times simpler and more
durable."</span></strong></em></p>

<p class="c13"><em><strong><span class="style9">
Stephen Harpham-Littleton, CO</span></strong></em></p>

<p class="style29 c12"><a href="testimonials.html">
More testimonials</a></p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div> <br />
<br />
<a href="DVD/html/index.htm">
<img height="18" src="images/new.jpg"
width="30" border="0" alt="IDPA" /></a> <a href="IDPAstand.html" target=
"_blank"><span class="c10">IDPA/IPSC size model</span></a>
 <br />
<a href="DVD/html/index.htm">
<img height="18" src="images/new.jpg"
width="30" border="0" alt="dual purpose" /></a> <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?cart_id=1281128.27658&p_id=00302&xm=on"
target="_blank"><span class="c10">Dual Purpose Model now
available</span></a><br />
<a href="DVD/html/index.htm">
<img height="18" src="images/new.jpg"
width="30" border="0" alt="taegetstands" /></a> <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?cart_id=1281128.27658&p_id=00402&xm=on"
target="_blank"><span class="c10">Locking Model now
Available</span></a><br />
<a href="DVD/html/index.htm">
<img height="18" src="images/new.jpg"
width="30" border="0" alt="target stands" /></a> <a target="_blank" href=
"spinner.html"><span class="c10">Ultimate Spinner Target now
available</span></a> (9/11/11)<br />
<a href="feeds/index.htm">Check out our new Homeland
Security Feeds</a>

<h3>Shooting Solutions</h3>

<p><br />
Target shooting has been a problem since man invented the
sling shot. How can you secure your target, what method is
the most effeciant, how can you shoot without collatoral
damage, how can you record your results.<br />
<br />
You probably shoot in some pretty barren and windy areas
with only rocks, trash or the occasional crow to shoot at.
We have spent many an afternoon shooting in windy weather in
the mountains. Our problem now is having to wait while other
shooters go out to re-erect their blown down targets!<br />
<br />
There are many stands on the market so why would you want
this one? Simple. It's Made in America , 100% dependable
heavy duty design. No special hardware or pieces to keep
track of. No special targets to buy. It has a Lifetime
Guarantee and the price is right. <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
View Products</a>  See <a href="torture_test.htm">
Torture Test</a></p>

<h3>Value</h3>

<p>Since we are the manufacturer, we can offer wholesale
prices starting at $32.50. If you had a local fabrication
shop make these, they would cost at least $65 apiece.
Additionally, this is a stand you should never need to
replace. Target stand manufacturers base their business on
the fact that the stands they sell have to be replaced
eventually. These stands are designed to last a
lifetime....period.<a href="guarantee.htm"></a></p>

<p>Is  your department paying highly paid personnel to
build and repair target stands? If the answer is yes, you
are wasting valuable human resources</p>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Click here for Order Page</a></p>

<h3>Stability</h3>

<p>Plus, for more stability these stands have supports that
are longer("20) and legs that are drilled for staking in
windy weather. The "18 inch models still have "20 legs. We
even <a target="_blank"
href="Equipment.html">machine the center pieces</a> for a
more precise fit</p>

<h3>Versatility</h3>

<p>When you are at a public range, there is usually not the
freedom to change distances easily. This is crucial for
effective training. Now you can stay on the "common" firing
line and still change distances easily without risking your
life. They are excellent for multiple target acquisition
when placed strategically on a course.<a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">Order
Now</a><br />
<br />
<a href="DVD/html/index.htm">
<img height="18" src="images/new.jpg"
width="30" border="0" alt="targets" /></a> <a href="IDPAstand.html" target=
"_blank"><span class="c10">IDPA/IPSC size model available</span></a></p>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Click here for Order Page</a><br />
<br />
Simple, dependable, heavy duty, light weight and best of
all, it works for any kind of paper target. You can also
staple silhouette cut-outs directly to the furring strips.<br />
<br />
The stand is constructed of <a href="Equipment.html">
Digitally MiG welded</a> , 16 & 11 gauge(not 18) high
quality hot-rolled square steel tubing-not angle iron.. It
is designed to hold 1"x2" furring strips as the uprights for
the targets (see pics). Shoot many targets of all sizes and
shapes before the cardboard or the furring strips need to be
replaced.</p>

<p>The <a href="Prorangemodel.htm" target="_blank">Pro Range
Model</a> has thicker walled uprights for a more wobble free
furring strip fit. <a href="Prorangemodel.htm" target="_blank">
Click here for picture</a><br />
<br />
The overall size is 24" wide by 6" high with 20" legs for
superior stability, especially when freestanding. Distance
between uprights is 22". When using 4 ft. furring strips, <a href=
"images/splayed.gif">targets 18" up to 36" wide</a> can be
accommodated. The legs are drilled to allow for staking in
windy weather.<br />
<br />
The low profile makes it almost impossible to damage the
stand itself. You have to be a really bad shot (or good
shot) to hit the permanent frame.<br />
<br />
The stands weigh about 5-6 lbs. depending on model. We paint
them with a generous coat of industrial strength red oxide
primer, so they are ready for painting if desired . We
charge $5.00 for a custom color. See the <a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
order page</a> for details This is painted over the primer
coat, not on bare metal.</p>

<p>We have also designed them to drain water from the
uprights if for some reason they are left out in the rain.</p>

<p>Furring strips cost about $.75 each (8' sections)if you
can't pick them up for free somewhere. They are used for
just about everything on construction sites and can be cut
to height for individual shooting conditions and/or styles.<br />
<br />
For hunting rifle sight-ins we recommend 3 to 4 ft. For
handgun defense practice a little higher, 4-5 ft.<br />
<br />
The 1"x2" wood furring strips (not included)usually take
quite a pounding before they expire. We've gone many hours
of intense
<a href="Training.html">defensive handgun practice</a>
without having to replace them. (About 500 rounds per
person/per day).</p>

<p><a href= "http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Order Now</a></p>

<p><a href="DVD/html/index.htm">
<img height="18" src="images/new.jpg"
width="30" border="0" alt="targets" /></a> <a href="IDPAstand.html" target=
"_blank"><span class="c10">IDPA/IPSC size model now
available</span></a></p>

<p> </p>

<table width="69%" border="0">
<tr>
<td></td>

<td>
<p>Tuffsteel  Manufacturing<br />
P.O. Box 698<br />
Dillon, CO 80435</p>
</td>

<td width="149"><span class="c16">Family owned and
operated since 1996</span></td>
</tr>
</table><br />
Inquiries or orders please call 970-513-9371<br />
<br />
<span class="c16">No pick-ups unless otherwise authorized in
advance. We do not have a retail showroom. (Another way to
keep costs down.)</span>

<p><span class="style9">I<span class="style33">f you feel
uncomfortable ordering online,  feel free to call. If
we are not in the office,  we are PROBABLY in the shop.
leave a short message AND we'll call you back USUALLY within
30-60 minutes.</span></span></p>

<p><span class="style9"><span class="style33">We do not
process credit cards on this website.</span></span></p>

<ul>
<li><a href="TuffSteel%20Fax.pdf" target="_blank"><span class=
"c16">Printable order form for faxing</span></a></li>

<li><a href="Targets.html"><span class="c16">Free
Printable Targets</span></a></li>

<li><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
<span class="c16">Order online</span></a></li>
</ul>

<p><a name="terms" id="terms"></a>*State , county, or local.</p>

<form method="get" action="http://sitelevel.whatuseek.com/query.go"
target="_self">
<table border="2" cellspacing="0" cellpadding="0">
<tr>
<td width="100%">
<table cellspacing="0" cellpadding="2" border="0">
<tr>
<td align="left" valign="middle" nowrap="nowrap">
<span><small><b>Search</b></small></span></td>

<td align="center" valign="middle" nowrap="nowrap">
<span><select name="crid" size="1">
<option value="web">
The Web
</option>

<option selected="selected" value="5869af89066495ed">
This Site
</option>
</select></span></td>

<td align="center" valign="middle" nowrap="nowrap">
<span class="c17">for</span></td>

<td align="center" valign="middle" nowrap="nowrap">
<input type="text" name="query" size="17" value=""
maxlength="100" /></td>

<td valign="middle" align="right"><input type="submit"
value="Search" name="B1" /></td>
</tr>

<tr>
<td align="center" colspan="5"><a href=
"http://sitelevel.whatuseek.com?synd=box&chan=4"><span>
<small><small>Get a Free Search Engine for Your
Web Site</small></small></span></a></td>
</tr>
</table>
</td>
</tr>
</table>
</form> 

<p>This <a target="_blank" href="http://www.2asisters.org/">
Second Amendment Sisters Inc.</a> <a target="_blank" href=
"http://www.ringsurf.com">RingSurf</a> site owned by <a href=
"mailto:shootwell@tuffsteel.com">Tuffsteel.com</a>.<br />
[<a target="_blank" href=
"http://www.ringsurf.com/netring?ring=SASinc;id=180;action=next">Next</a>|
<a target="_blank" href=
"http://www.ringsurf.com/netring?ring=SASinc;id=180;action=skip">
Skip Next</a>| <a target="_blank" href=
"http://www.ringsurf.com/netring?ring=SASinc;id=180;action=next5">
Next 5 Sites</a>| <a target="_blank" href=
"http://www.ringsurf.com/netring?ring=SASinc;action=list">
List Sites</a>| <a target="_blank" href=
"http://www.ringsurf.com/netring?ring=SASinc;action=addform">
Join!</a>]</p>
</td>
</tr>

<tr>
<td align="left"></td>
</tr>
</table>
</td>

<td valign="top" width="34%" class="style10 c7">
<div class="c6">
<table cellspacing="0" cellpadding="0" width="100%" border="0">
<tr>
<td class="sohotext" valign="top" align="center" width="30%">
Free Standing<br />
<a href="qualifyingtarget.html"><img border="0" src=
"images/qualifytarget120x.jpg" width="120" height="247" alt=
"B-21 qualifying target" /></a><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS"><img alt="B-21 Reduced"
src="images/ts11-2006.jpg" width="111" height="246" class=
"style34" /></a><br />
Pro Range "22<br />

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Order Now</a><br />
<a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
See all products</a><br /></p>

<table id="oTBL19590414" class="c18" cellspacing="0" cellpadding=
"2" width="70%">
<tr>
<td valign="top" align="center">
 FREE STUFF (below)<br />
<br />
<a href="video_news/video_news_index.htm">
<img height="18"
src="images/new.jpg" width="30" border="0" alt="targets" />
Video News </a><br />
<br />
<a href="Targets.html" target="_blank">Printable
Targets</a><br />
<br />
<a href="Ballistics/bullfly/index.htm">How do
bullets fly?</a><br />
<span class="style18">(A comprehensive study)<br />
<br />
<a href="Targets.html" target="_blank">NEW! Poker
Hand Shooting</a></span>

<p><a href="DVD/html/index.htm">
<img height="18" src=
"images/new.jpg" width="30" border="0" alt="target stand" /></a><br />
<a target="_blank" href="map.htm">Free Topo Maps</a> <a href=
"DVD/html/compreloading.htm"></a></p>

<p><a href="Ballistics/PointBlank.exe" target=
"_blank">Ballistic Software</a></p>

<p><a href="LE_discount.htm#Range%20Photos">Free
Target Stands</a><br />
<br />
<a href="Ballistics_resource_page.html">Ballistics
Resources</a></p>

<p><a href="Ballistics/Factory_Ammo/index.html">
Factory Ammo Data</a></p>

<p><a href="videos.htm">Videos</a><br />
<br />
<a href="games/Tank.htm">Play 'Tank'</a></p>

<p><a href="glock_id_page.htm">Glock ID Page</a></p>

<p><a href="gamelist.htm">Free Games</a></p>

<p><a href="recipes/index.htm">Wildlife Recipes</a></p>

<p><a href="articles.htm">Articles</a></p>

<p><a href="safetyrules.htm" target="_blank">Safety
Rules</a></p>

<p><a href="guarantee.htm">Lifetime Guarantee Free
Replacement</a></p>
</td>
</tr>
</table>

<table cellpadding="6" class="style25 c20">
<tr>
<td>
<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
<img height="49" src="images/made_in_the_usa_text_sm_clr.gif"
width="91" border="0" class="c19" alt="made in usa" /></a>No
off-shore outsourcing!<br />
Each stand is handmade by an American patriot, with
US steel.<br />
<img height="156" src=
"images/animation/statue_of_liberty_gun_look_lg_clr.gif"
width="91" align="right" border="0" alt=
"Please Keep America Free" /><br /></p>

<p>Keep America strong.<br /></p>

<p>It's the only country we have...</p>
</td>
</tr>
</table>

<p>Mr. Watermelon meets Mr. 308 <br /></p>

<p><object id="media1" height="200" type="video/x-ms-wmv" width=
"200">
<param name="filename" value=
"video_news/watermelonbranded.wmv" />
</object></p>

<p><a href="video_news/video_news_index.htm">More video
news</a></p>

<p><br />
Stake-able<br />
 <img border="0" src="images/stakeable2.jpg" width="112"
height="162" alt="wind proof" /></p>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Order Now</a></p>

<p>
<img height="105" src="images/moneybacklogo.gif" width="142"
border="0" alt="Money Back" /></p>

<p>Stack-able</p>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
<img height="141" src="images/14stack.gif" width="190" border="0"
alt="stack-able and space saving" /></a><br />
"This is the last target stand you'll ever need to buy"<br />
<a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Order Now</a></p>
</td>
</tr>
</table>

<table width="100%" border="0">
<tr>
<td align="center"><a href="At_sea.htm" target="_blank">
<img height=
"53" src="images/atsea_small.gif" width="115" border="0" alt="target shooting at sea" /></a><br />
Coastal Defense Practice</td>
</tr>
</table><br />
<em><span class="style9">"You better get him with the first shot
because rarely will you</span></em> <em><span class="style9">get
a second"</span></em>
</div>

<p><br /></p>

<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<p><span class="c16"><em>"We make'm stronger than they need
to be"</em></span></p>
</td>
</tr>
</table>

<p><a href="guarantee.htm">Our Guarantee</a></p>

<p><a href="feeds/index.htm">Check out our new Homeland Security
Feeds</a></p>

<p>"<em>Everything you need, nothing you don't"</em><br /></p>

<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Order Now</a><br />
<a href="IDPAstand.html"><img alt="ipsc target frame" src="images/ipsc.jpg"
width="200" height="497" class="style26" /></a><br /></p>

<p><a target="_blank" href="Books/shesgotagun.htm">More info</a><br />
<br /></p>

<p> </p>

<p> </p>
</td>
</tr>
</table>
</td>

<td valign="top" width="15%" class="style35 c22">
<table border="0" width="150">
<tr>
<td align="center">
<table border="0" width="140">
<tr>
<td align="center">
<script type="text/javascript">
//<![CDATA[
<!-- Begin
var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)
year = year + 1900;
document.write("<center>" + lmonth + " ");
document.write(date + ", " + year + "<\/center>");
// End -->
//]]>
</script>
</td>
</tr>
</table>

<table border="0" width="150">
<tr>
<td align="center">
<table border="4" width="140" cellspacing="20" cellpadding="4">
<tr>
<td class="c21" height="25">
<p><a href="About_Us.html">About Us</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="FAQ's.html">FAQ's</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="ContactUs.html">Contact Us</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="Privacy_Policy.html">Privacy Policy</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a target="_blank" href=
"https://www.tuffsteel.com/store/agoracart55/agora.cgi?dc=1&cart_id=3226657.7449&product=TARGETSTANDS%00TARGETSTANDS%00TARGETSTANDS">
Shopping Cart</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="Targets.html">Targets</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Store</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a target="_blank" href=
"http://www.tuffsteel.com/store/agoracart55/agora.cgi?product=TARGETSTANDS">
Order</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="Ballistics_resource_page.html">Ballistics</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="dealers.html">Dealer Info</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="index_copy(2).html">Home</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="Links.html">Links</a></p>
</td>
</tr>

<tr>
<td class="c21" height="25">
<p><a href="articles.htm" target="_top">Articles</a></p>
</td>
</tr>
</table>

<p>For best viewing of this site please disable your pop-up
blocker</p>

<table border="0" width="100%">
<tr>
<td align="left">
<img height="85" src="images/MCVisa4jpg.jpg"
width="47" border="0" alt="VISA?mastercard" /><img alt="PayPal" src=
"images/verification_seal.gif" /></td>
</tr>
</table>
</td>
</tr>
</table>

<table border="0" width="140">
<tr>
<td align="center"><img height="63" alt="SSL Certificate Authority"
src="images/comodosquare_70pixels.gif" width="70" /><br />
SSL Certificate Authority<br />
Order with confidence</td>
</tr>
</table>

<table border="0" width="140">
<tr>
<td>
<table border="0" width="140">
<tr>
<td align="center" width="149"><a onclick=
"(document.all) ? window.external.addFavorite(location.href, document.title) : window.alert('Press<CTRL+D > to bookmark this page.');"
href="#">Add this page to your favorites menu.</a></td>
</tr>
</table>
</td>
</tr>
</table>

<table border="0" width="140">
<tr>
<td align="center">
<script type="text/javascript" language="JavaScript">
//<![CDATA[

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original: David Henry (davidputhenry@hotmail.com) -->
<!-- Web Site: http://www.davidphenry.com/ -->

<!-- Begin
function isPPC() {
if (navigator.appVersion.indexOf("PPC") != -1) return true;
else return false;
}
if(isPPC()) {
document.write('<b>Send <A CLASS= "contact"HREF=\"mailto:\?subject\=Take a look at this page I found, ' + document.title + '?body= Youcanseethispageat:'+window.location+'\"onMouseOver="window.status=\'Send your friends e-mail about this page\'; return true" TITLE="Send your friends e-mail about this page">this page<\/A> to a friend<\/b>');
}
else { document.write('<b>Send <A CLASS= "contact"HREF=\"mailto:\?body\= Take a look at this page I found, ' + document.title + '.Youcanseethispageat:'+window.location+'\"onMouseOver="window.status=\'Send your frie

[/codebox]

This post has been edited by Christian J: Nov 24 2012, 06:06 PM
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Nov 24 2012, 05:01 PM
Post #17


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,731
Joined: 9-August 06
Member No.: 6



If you write XHTML use linked JS or you must add the CDATA shebang.
http://www.w3.org/TR/xhtml1/#h-4.8

It's a good idea to always use external JS and CSS files, no matter what the markup flavour is.

The errors that turn up after correcting that seems to be because of illegal characters.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Nov 24 2012, 06:03 PM
Post #18


.
********

Group: WDG Moderators
Posts: 9,659
Joined: 10-August 06
Member No.: 7



QUOTE(Skibum1 @ Nov 24 2012, 09:38 PM) *

page validation weighs heavier in Google algorithm than ever before(according to google support)

That sounds odd, can you link to the Google text in question?


User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Nov 24 2012, 06:17 PM
Post #19


.
********

Group: WDG Moderators
Posts: 9,659
Joined: 10-August 06
Member No.: 7



Regarding the validator errors, maybe they are caused by this part:

CODE
var content='<';

which a validator may consider the beginning of an HTML tag (compare the W3C validator's report, which mentions it in its first warning). Test if an HTML entity works better.

Also, JS document.write is not allowed in proper XHTML (see http://www.w3.org/MarkUp/2004/xhtml-faq#docwrite ), even in external JS files (though it may not always be caught by an XHTML validator). AFAIK this example should cause an error because the "parent" of the B element is unrecognized:

CODE
document.write('<b>Send  
...

but for some reason it doesn't.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Nov 24 2012, 11:11 PM
Post #20


.
********

Group: WDG Moderators
Posts: 9,659
Joined: 10-August 06
Member No.: 7



QUOTE(Christian J @ Nov 25 2012, 12:17 AM) *

Regarding the validator errors, maybe they are caused by this part:

Tested and it doesn't seem to make any difference without it.

Pandy's CDATA suggestion seems to work, though.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

2 Pages V  1 2 >
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 26th April 2024 - 05:39 PM