<< < 163 164 165 166 167 168 169 170 171 172 173 > >>   Sort: Rank

Placing a Table in the Center of a Page
How do I center a table? You place a table in the center of a page with the help of CSS as shown in this example: In your HTML, use &lt;div class="center"> &lt;table>...&lt;/tabl e>&lt;/div> In your CSS, use div.center { text-align: center; } div.center table { margin-left: auto; mar...
2007-03-03, 5870👍, 0💬

Using Tables to Structure Forms
How can I use tables to structure forms Small forms are sometimes placed within a TD element within a table. This can be a useful for positioning a form relative to other content, but it doesn't help position the form-related elements relative to each other. To position form-related elements relativ...
2007-03-03, 6965👍, 0💬

How do I align a table to the right (or left)?
Can I nest tables within tables? You can use &lt;TABLE ALIGN="right"> to float a table to the right. (Use ALIGN="left" to float it to the left.) Any content that follows the closing &lt;/TABLE> tag will flow around the table. Use &lt;BR CLEAR="right"> or &lt;BR CLEAR="all"> to mark t...
2007-03-03, 5777👍, 0💬

Nesting Tables within Tables
Can I nest tables within tables? Yes, a table can be embedded inside a cell in another table. Here's a simple example: &lt;table&gt; &lt;tr&gt; &lt;td&gt;this is the first cell of the outer table&lt;/td&gt; &lt;td&gt;this is the second cell of the outer table,...
2007-03-03, 5724👍, 0💬

What is DOCTYPE
What is a DOCTYPE? Which one do I use? According to HTML standards, each HTML document begins with a DOCTYPE declaration that specifies which version of HTML the document uses. Originally, the DOCTYPE declaration was used only by SGML-based tools like HTML validators, which needed to determine which...
2007-03-03, 5478👍, 0💬

What is everyone using to write HTML documents?
How comfortable are you with writing HTML documents entirely by hand? Everyone has a different preference for which tool works best for them. Keep in mind that typically the less HTML the tool requires you to know, the worse the output of the HTML. In other words, you can always do it better by hand...
2007-03-03, 6352👍, 0💬

Writing HTML Documents Entirely by Hand
How comfortable are you with writing HTML documents entirely by hand? Very. I do not usually use WYSIWYG. The only occasions when I do use Dreamweaver are when I want to draw something to see what it looks like, and then I will usually either take that design and hand-modify it or build it all over ...
2007-03-03, 5625👍, 0💬

Hypertext Link
What is a Hypertext link? A hypertext link is a special tag that links one page to another page or resource. If you click the link, the browser jumps to the link's destination.
2007-03-03, 5665👍, 0💬

Including Comments in HTML
How can I include comments in HTML? An HTML comment begins with "&lt;!--", ends with "--&gt;", and does not contain "--" or "&gt;" anywhere in the comment. Do not put comments inside tags (i.e., between "&lt;" and "&gt;") in HTML markup. The following are examples of HTML comment...
2007-03-03, 8706👍, 0💬

Frameset and frame
How do I create frames? What is a frameset? Frames allow an author to divide a browser window into multiple (rectangular) regions. Multiple documents can be displayed in a single window, each within its own frame. Graphical browsers allow these frames to be scrolled independently of each other, and ...
2007-03-03, 5559👍, 0💬

Simplest HTML Page
What is the simplest HTML page? &lt;HTML&gt; &lt;HEAD&gt; &lt;TITLE&gt;Simplest HTML Page!&lt;/TITLE&gt; &lt;/HEAD&gt; &lt;BODY&gt; Welcome to interview.fyicenter.com! &lt;/BODY&gt; &lt;/HTML&gt;
2007-03-03, 5825👍, 0💬

What Is a HTML Tag
What is a HTML tag? In HTML, a tag tells the browser what to do. When you write an HTML page, you enter tags for many reasons -- to change the appearance of text, to show a graphic, or to make a link to another page.
2007-03-03, 5585👍, 0💬

What Tools to Use to View HTML Documents
What Tools to Use to View HTML Documents? The basic tool you need to view HTML documents is any Web browser, like Internet Explorer (IE) or FireFox. The following tutorial shows you how to view a HTML document with : Write a HTML document and save it as hello.html. Run IE and select the File &gt...
2007-03-03, 6996👍, 0💬

What Tools to Use to Write HTML Documents
What Tools to Use to Write HTML Documents? The basic tool you need to write HTML documents is any text editor, like notepad on Windows system, or vi on Unix system. If you are looking for some advanced tools to help you writing HTML documents, you can select any one from the following three categori...
2007-03-03, 5710👍, 0💬

How To Validate HTML Documents Online
How To Validate HTML Documents Online? If you have just finished a new HTML document, and you want to make sure that confirms with the HTML specification, you can use the HTML online validator at http://validator.w3.org/ . There are 3 ways you can use this validator: By URL - Specify the URL where y...
2007-03-03, 5275👍, 0💬

How Many Tags Are Defined in HTML 4.01
How Many Tags Are Defined in HTML 4.01? There are 77 tags defined in HTML 4.01: a abbr acronym address area b base bdo big blockquote body br button caption cite code col colgroup dd del dfn div dl dt em fieldset form h1 h2 h3 h4 h5 h6 head hr html i img input ins kbd label legend li link map meta n...
2007-03-03, 6570👍, 0💬

Latest Version of HTML Specification?
What Is the Latest Version of HTML Specification? The latest HTML specification is HTML 4.01 specification published in December 1999 by W3C. If you are professional HTML developer, you should get a copy of this specification at http://www.w3.org/TR/html4/ . HTML 4 extends HTML with mechanisms for s...
2007-03-03, 5447👍, 0💬

Who Developed HTML
Who Developed HTML? HTML was originally developed by Tim Berners-Lee while at CERN, and popularized by the Mosaic browser developed at NCSA. During the course of the 1990s it has blossomed with the explosive growth of the Web. Tim now holds the 3Com Founders chair at the Laboratory for Computer Scie...
2007-03-03, 8289👍, 0💬

Relation between HTML and CSS
What Is the Relation between HTML and CSS? CSS (Cascading Style Sheets) is a technical specification that allows HTML document authors to attach formatting style sheets to HTML documents. When HTML documents are viewed as Web pages through Web browsers, the attached style sheets will alter the defau...
2007-03-03, 5316👍, 0💬

Relation between HTML and SGML
What Is the Relation between HTML and SGML? SGML (Standard Generalized Markup Language) is a metalanguage in which one can define markup languages, like HTML, for documents. SGML is a descendant of IBM's Generalized Markup Language (GML), developed in the 1960s by Charles Goldfarb, Edward Mosher and...
2007-03-03, 5593👍, 0💬

What Is URI
What Is URI? URI (Uniform Resource Identifier) is a superset of URL. URI provides a simple and extensible means for identifying a resource in a more generic way. For example, the following strings are all valid URIs: ftp://ftp.is.co.za/rfc/rfc1808 .txthttp://www.ietf.org/rfc/rfc239 6.txtldap://[2001...
2007-03-03, 6599👍, 0💬

Relation between HTML and URL
What Is the Relation between HTML and URL? URL (Uniform Resource Locator) is a compact string representation of the location for a Web document or other resource that is available on the Internet. The URL of a HTML document is usually the document file name prefixed with the domain name of your Web ...
2007-03-03, 5212👍, 0💬

Relation between HTML and XHTML
What Is the Relation between HTML and XHTML? XHTML (Extensible Hyper-Text Markup Language) is the next generation of HTML. XHTML reproduces, subsets, and extends HTML with XML. So if you want to catch up with the new generation, you should start to compose your Web pages in with XHTML. For more info...
2007-03-03, 5071👍, 0💬

Relation between HTML and XML
What Is the Relation between HTML and XML? XML (Extensible Markup Language) is a generic markup language to organize generic information into a structured document with embedded tags. HTML is not related to XML other than the factor that both languages uses embedded tags in with similar syntaxes. Fo...
2007-03-03, 5180👍, 0💬

<< < 163 164 165 166 167 168 169 170 171 172 173 > >>   Sort: Rank