Discussion Forums HTML, XML, JavaScript... |
 |
Software Reviews Editors,Others... |
 |
Top100 JavaScript Tutorials, ... |
 |
Tutorials ASP, CSS, Databases... |
Discussion List FAQ, Roundup, Configure ... |
 |
Authoring HTML, JavaScript, CSS... |
 |
Design Layout, Navigation,... |
 |
Graphics Tools, Colors, Images...
|
 |
Software Browsers, Editors, XML...
|
 |
Internet Domains, E-Commerce, ... |
 |
WDVL Resources Intermdiate, Tutorials,... |
 |
WDVL Discussion Lists, Top 100,... |
 |
| Technology Jobs |
 |
|
 |
Rethinking the Datacenter
Sponsored by HP
Today's datacenters need to increase utilization, get control over power and cooling costs, and align with business objectives. Download this eBook to learn about the challenges facing the data center in a world where digital information is growing at a torrid pace and costs are being held in check. Learn more. »
|
|
Putting the Green into IT
Sponsored by HP
Electricity use in data centers is skyrocketing, sending energy bills through the roof, creating environmental concerns and generating negative publicity. "Going Green" means looking to technologies like virtualization, energy-efficient chips and racks, and implementing policies that extend beyond the data center. Learn more. »
|
|
Managing the Modern Network
Sponsored by HP
In a global economy where information crosses the globe in an instant, and where Web-based applications power business, it's more important than ever to ensure your network is safe from threats and optimized to deliver the data your business needs. »
|
|
Evaluating Software as a Service for Your Business
Sponsored by Webroot
Is Software as a Service just hype, or is something really going on here? See if your company can benefit as SaaS tries to change the face of the enterprise.
»
|
|
Is Your Disaster Recovery Plan Good Enough?
Sponsored by HP
Preparing for a disaster is more often than not part of the storage planning process, and it is one of the most difficult tasks, since it includes local hardware and software, networking equipment, and a test plan. Learn how to get disaster recovery right. »
|
|
|
|
|
|
Breaks
- BR
-
Used to force a line break in the text.
This tag takes an optional parameter to specify how text should wrap
around images.
The CLEAR attribute can be used to move down past floating images
on either margin, e.g. <BR CLEAR=LEFT>.
- HR
-
Creates a horizontal line across the window.
By default the line will span the entire width of the document
according to the specifications of BLOCKQUOTE and LIST tags.
However, you can modify the look of the line by using any of the
following attributes.
- ALIGN
- LEFT, RIGHT, or CENTER.
- SIZE
- some pixel value.
- WIDTH
- some pixel value or some percentage of the document
width.
- NOSHADE
- turn off off the beveling look.
- COLOR may equal some color hexvalue.
-
P
-
Indicates a new paragraph and instructs the browser to add a blank line.
Takes optional alignment parameters of LEFT, RIGHT or CENTER to align
the paragraph.
It cannot contain block-level elements (including P itself).
The end tag may be omitted, in which case it is implied by
either the next block-level
start tag or the end tag of the element that contains the P element,
whichever comes first.
For example, the following two paragraphs:
<P>This is the first paragraph.</P>
<P>This is the second paragraph.</P>
...a block element...
may be rewritten without their end tags:
<P>This is the first paragraph.
<P>This is the second paragraph.
...a block element...
since both are implicitly ended by the block elements that follow them.
Similarly, if a paragraph is enclosed by a block element, as in:
<DIV>
<P>This is the paragraph.
</DIV>
the end tag of the enclosing block element (here, DIV)
implies the end tag of the P element.
We discourage authors from using empty P elements.
User agents should ignore empty P elements.
|
|