Archive for html
You are browsing the archives of html.
You are browsing the archives of html.
Why does the browser show my plain HTML source?
If Microsoft Internet Explorer displays your document normally, but other browsers display your plain HTML source, then most likely your web server is sending the document with the MIME type “text/plain”. Your web server needs to be configured to send that filename with the MIME type [...]
How do I keep people from stealing my source code and/or images?
Because copies of your HTML files and images are stored in cache, it is impossible to prevent someone from being able to save them onto their hard drive. If you are concerned about your images, you may wish to embed a watermark with [...]
Why doesn’t my title show up when I click “check it out”?
You’re probably looking at the wrong part of the screen. The Title usually shows up in the Title Bar on the Window, to the left of the minimize/maximize buttons on graphical browsers.
How do I make a thumbnail for my image(s)?
Thumbnails are very useful, but [...]
How do I remove the border around frames?
Removing the border around frames involves both not drawing the frame borders and eliminating the space between the frames. The most widely supported way to display borderless frames is
<FRAMESET … BORDER=0 FRAMEBORDER=0 FRAMESPACING=0>.
Note that these attributes are proprietary and not part of the HTML 4.01 specifications. (HTML 4.01 [...]
How do I change the title of a framed document?
The title displayed is the title of the frameset document rather than the titles of any of the pages within frames. To change the title displayed, link to a new frameset document using TARGET=”_top” (replacing the entire frameset).
How do I link an image to something?
Just [...]
HTML for Lists
1. Bulleted Lists:
<ul>
begins a bulleted, indented list. Each item in the list is then prefaced with the
<li>
tag. It is not necessary to insert a break at the end of each line — the
<li>
tag automatically creates a new line.
* with <li type=disc>
* with <li type=square>
* with <li type=circle>
2. Numbered Lists:
<ol>
begins a [...]
Can I have two or more actions in the same form?
No. A form must have exactly one action. However, the server-side (e.g., CGI) program that processes your form submissions can perform any number of tasks (e.g., updating a database, sending email, logging a transaction) in response to a single form submission.
How can I use forms [...]
How do I align a table to the right (or left)?
You can use
<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
</TABLE> tag will flow around the table. Use <BR CLEAR="right"> or <BR CLEAR="all">
to mark the end of the text that is to flow [...]
What is HTML ?
HTML, or HyperText Markup Language, is a Universal language which allows an individual using special code to create web pages to be viewed on the Internet.
HTML ( H yper T ext M arkup L anguage) is the language used to write Web pages. You are looking at a Web page right [...]