Saved Bookmarks
| 1. |
Solve : free software that shows divs? |
|
Answer» Hi, IM practicing HTML code and am getting CONFUSED where a div stops and anouther one starts what is some free software I can use to solve this?Bot sure if this is what you want. There are HTML editors thereat LET you alternate between the HTML and the visual mode. One is Sea Monkey.
Hope that helps. and is there a text editor that will show what start div is connected to what end div?The SeaMonkey HTML visual editor will switch instantly to source, mode from tab. Code example: Code: [Select]<html> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type"> <TITLE></title> </head> <body> <div style="color:#0000FF"> <h3>This is a heading</h3> <p>This is a paragraph.</p> </div> </body> </html> Does that help? The div tags made all inside blue, but did not stop other tags. will display as: This is a heading This is a paragraph. Try using Notepad++ . It color codes and indents HTML tags. I think this could be helpful to you with regard to the div tags. |
|