Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > Images

Reply
Thread Tools

Images

 
 
nerdy
Guest
Posts: n/a
 
      10-20-2003
I'm new here so here goes. Just started playing arund with html and I
wonder if there is a correct way. Or does anything go. Ill tell you what I
mean. I want to break a htm page with bars. Now I know the standard "rule"
to break up a page in html. When using an image of a bar that I downloaded
from the net, is it correct, or the done thing to use, for instance,
numbers that you would use to set the size of a picture image ? I hope this
makes sense. I'm still trying to get a handle on the jargon.


 
Reply With Quote
 
 
 
 
nerdy
Guest
Posts: n/a
 
      10-20-2003

"nerdy" <> wrote in message
news:...
> I'm new here so here goes. Just started playing arund with html and I
> wonder if there is a correct way. Or does anything go. Ill tell you what

I
> mean. I want to break a htm page with bars. Now I know the standard

"rule"
> to break up a page in html. When using an image of a bar that I

downloaded
> from the net, is it correct, or the done thing to use, for instance,
> numbers that you would use to set the size of a picture image ? I hope

this
> makes sense. I'm still trying to get a handle on the jargon.
>
>

Oh, and also, are there any other "rules" that can be used to break the page
up. Or is using images of rules the "correct" way to do it.


 
Reply With Quote
 
 
 
 
William Tasso
Guest
Posts: n/a
 
      10-20-2003
nerdy wrote:
> I'm new here so here goes.


Then pull up a chair, sit down and crack open a cold one. While you're
chillin', take a look at previous posts, perhaps dig even further back at
http://groups.google.com

> Just started playing arund with html and I
> wonder if there is a correct way.


Indeed there is: The specs are here: http://w3.org/

> Or does anything go.


No - you can't just make stuff up and expect it to work.

> Ill tell you
> what I mean. I want to break a htm page with bars.


Sounds like visual styling, perhaps you should take a look at CSS here:
http://www.w3.org/Style/CSS/

Unfortunately, the crystal ball is at the cleaners so I'm gonna have to
guess unless you can supply a url that shows what you mean.

> Now I know the
> standard "rule" to break up a page in html.


I don't.

> When using an image of a
> bar that I downloaded from the net, is it correct, or the done thing
> to use, for instance, numbers that you would use to set the size of a
> picture image ?


For an image? you mean width and height? It doesn't matter, some folk say
you should always specify them (it helps stop some browsers 'jumping about'
when loading the page), others say don't waste your time (you have to
remember to keep your markup in tune with your graphic).

Just a thought - is this a background image? take a google at "CSS
background".

> I hope this makes sense.


almost - as I said, the crystal ball facility is not currently available.

> I'm still trying to get a handle on the jargon.


The 'jargon' is in the specs.

Once again - a URL speaks a thousand words.

In any event, good luck.
--
William Tasso - http://WilliamTasso.com


 
Reply With Quote
 
Adrienne
Guest
Posts: n/a
 
      10-20-2003
Gazing into my crystal ball I observed "nerdy" <>
writing in news:3f93caad$:

>
> "nerdy" <> wrote in message
> news:...
>> I'm new here so here goes. Just started playing arund with html and I
>> wonder if there is a correct way. Or does anything go. Ill tell you
>> what I mean. I want to break a htm page with bars. Now I know the
>> standard "rule" to break up a page in html. When using an image of a
>> bar that I downloaded from the net, is it correct, or the done thing
>> to use, for instance, numbers that you would use to set the size of a
>> picture image ? I hope this makes sense. I'm still trying to get a
>> handle on the jargon.
>>
>>

> Oh, and also, are there any other "rules" that can be used to break the
> page up. Or is using images of rules the "correct" way to do it.
>
>


My crystal ball says you're looking to break up the page with some sort of
horizontal rule, whether it be using the HR element, or a long, thin image.

Without images:
<p>The quick brown fox jumped over the lazy dog's back 01234567890 times.
</p>
<hr>
<p>The quick brown fox jumped over the lazy dog's back 01234567890 times.
</p>

With an image. Yes, you should include the actual width and height of the
image.

<p>The quick brown fox jumped over the lazy dog's back 01234567890 times.
</p>
<img src="bar.jpg" height="25" width="400" alt="">
<p>The quick brown fox jumped over the lazy dog's back 01234567890 times.
</p>


--
Adrienne Boswell
Please respond to the group so others can share
http://www.arbpen.com
 
Reply With Quote
 
nerdy
Guest
Posts: n/a
 
      10-21-2003

"Adrienne" <> wrote in message
news:Xns941A7F0D53527arbpenyahoocom@207.115.63.158 ...
> Gazing into my crystal ball I observed "nerdy" <>
> writing in news:3f93caad$:
>
> >
> > "nerdy" <> wrote in message
> > news:...
> >> I'm new here so here goes. Just started playing arund with html and I
> >> wonder if there is a correct way. Or does anything go. Ill tell you
> >> what I mean. I want to break a htm page with bars. Now I know the
> >> standard "rule" to break up a page in html. When using an image of a
> >> bar that I downloaded from the net, is it correct, or the done thing
> >> to use, for instance, numbers that you would use to set the size of a
> >> picture image ? I hope this makes sense. I'm still trying to get a
> >> handle on the jargon.
> >>
> >>

> > Oh, and also, are there any other "rules" that can be used to break the
> > page up. Or is using images of rules the "correct" way to do it.
> >
> >

>
> My crystal ball says you're looking to break up the page with some sort of
> horizontal rule, whether it be using the HR element, or a long, thin

image.
>
> Without images:
> <p>The quick brown fox jumped over the lazy dog's back 01234567890 times.
> </p>
> <hr>
> <p>The quick brown fox jumped over the lazy dog's back 01234567890 times.
> </p>
>
> With an image. Yes, you should include the actual width and height of the
> image.
>
> <p>The quick brown fox jumped over the lazy dog's back 01234567890 times.
> </p>
> <img src="bar.jpg" height="25" width="400" alt="">
> <p>The quick brown fox jumped over the lazy dog's back 01234567890 times.
> </p>
>
>
> --
> Adrienne Boswell
> Please respond to the group so others can share
> http://www.arbpen.com


thank you Adrienne. Very helpful. I just wanted to check if had dont it
right. After all, as with most things theres a right way and a wrong way.
I was just checkin.


 
Reply With Quote
 
nerdy
Guest
Posts: n/a
 
      10-21-2003

"nerdy" <> wrote in message
news:...
>
> "Adrienne" <> wrote in message
> news:Xns941A7F0D53527arbpenyahoocom@207.115.63.158 ...
> > Gazing into my crystal ball I observed "nerdy" <>
> > writing in news:3f93caad$:
> >
> > >
> > > "nerdy" <> wrote in message
> > > news:...
> > >> I'm new here so here goes. Just started playing arund with html and

I
> > >> wonder if there is a correct way. Or does anything go. Ill tell you
> > >> what I mean. I want to break a htm page with bars. Now I know the
> > >> standard "rule" to break up a page in html. When using an image of a
> > >> bar that I downloaded from the net, is it correct, or the done thing
> > >> to use, for instance, numbers that you would use to set the size of a
> > >> picture image ? I hope this makes sense. I'm still trying to get a
> > >> handle on the jargon.
> > >>
> > >>
> > > Oh, and also, are there any other "rules" that can be used to break

the
> > > page up. Or is using images of rules the "correct" way to do it.
> > >
> > >

> >
> > My crystal ball says you're looking to break up the page with some sort

of
> > horizontal rule, whether it be using the HR element, or a long, thin

> image.
> >
> > Without images:
> > <p>The quick brown fox jumped over the lazy dog's back 01234567890

times.
> > </p>
> > <hr>
> > <p>The quick brown fox jumped over the lazy dog's back 01234567890

times.
> > </p>
> >
> > With an image. Yes, you should include the actual width and height of

the
> > image.
> >
> > <p>The quick brown fox jumped over the lazy dog's back 01234567890

times.
> > </p>
> > <img src="bar.jpg" height="25" width="400" alt="">
> > <p>The quick brown fox jumped over the lazy dog's back 01234567890

times.
> > </p>
> >
> >
> > --
> > Adrienne Boswell
> > Please respond to the group so others can share
> > http://www.arbpen.com

>
> thank you Adrienne. Very helpful. I just wanted to check if had dont it
> right. After all, as with most things theres a right way and a wrong way.
> I was just checkin.
>


Um, by the way, I never said I was a tipist.


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't view images on Google Images timopp@gmail.com Computer Support 5 12-30-2005 01:45 AM
DataList with RadioButtons + Images: How to click on the images to activate the radiobutton? Luis Esteban Valencia Muņoz ASP .Net 0 06-03-2005 03:22 PM
Track Images added to images folder and subfolders - send out email alerts ASP .Net 4 01-04-2005 10:01 PM
Tool for converting 12-bit TIFF images to 16-bit TIFF-images? Peter Frank Digital Photography 11 12-13-2004 02:41 AM
Can recover old images from SmartMedia card, but not recent images Stephen Stormont Digital Photography 9 10-20-2003 07:59 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57