To contain information, to separate things or just to make something look nice.
In HTML 4.01, XHTML, and HTML 5, the proper way to add a border to an image is using a CSS declaration. img { border: 2px solid blue; } You could also put that as a style attribute, use a class or id CSS declaration, etc. In versions of HTML prior to 4.01, you added a border using the border attribute. <img src="test.jpg" border="2"> That code produces an image with a border 2 pixels wide. Note that CSS allows you to adjust the borders around an object separately, whereas this method does not allow that kind of distinction.
http://www.w3schools.com/HTML/
You don't use color as a 'tag' so-to-speak. To specify a color you have to add the color attribute to a HTML element. For example:your_text_here
yes you can use any text editing software to make a HTML file. Just use the rules of HTML and save it as htm or HTML and your good to go.
It is the space between the cell border and the text or images inside the cell. The number provided is the space in pixels. In modern HTML, it is set using CSS declarations.
Border can be an attribute in html. For example, in the table tag. This will put a border around the table.As another example, it can be used in the img tag.
You can't make border lines with HTML - you use CSS. <div id="mydiv">Content</div> <style type="text/css"> #mydiv {border: solid black 1px;} #mydiv {border: dashed red 1%;} #mydiv {border: none;} </style>
In HTML 4.01, XHTML, and HTML 5, the proper way to add a border to an image is using a CSS declaration. img { border: 2px solid blue; } You could also put that as a style attribute, use a class or id CSS declaration, etc. In versions of HTML prior to 4.01, you added a border using the border attribute. <img src="test.jpg" border="2"> That code produces an image with a border 2 pixels wide. Note that CSS allows you to adjust the borders around an object separately, whereas this method does not allow that kind of distinction.
You can't use PHP in an HTML document, but you can use HTML in PHP script.
http://www.w3schools.com/HTML/
The html converters that are free to use are HTML Converter and Free HTML Converter. These two websites do a great job at converting html files to whatever you need.
For example this is the HTML code: <body> <div id="picture"> <img src="images/image.jpg" alt="this is image" /> </div> </body> In CSS: #picture img { border:2px solid #000066; }
There are many sites which teach you HTML,Google ithttp://www.w3schools.com/HTML/
Use an html snippet
You can't use HTML on Facebook.
You don't use color as a 'tag' so-to-speak. To specify a color you have to add the color attribute to a HTML element. For example:your_text_here
Very simply add in this to your HTML document: (border="0 is optional)