Htmlshell - generate HTML skeletons
htmlshell.com
Htmlshell - generate HTML skeletons
1–10 of 30 posts
Re: Htmlshell - generate HTML skeletons
#2To be more DRY, shouldn't the "Autorun JavaScript" make use of selected JavaScript libraries (i.e. jQuery if possible)?
Re: Htmlshell - generate HTML skeletons
#3The opening and closing body and head tags aren't needed, nether is the closing html tag. It doesn't make that much difference to the page as a whole but it adds another level of indenting to your code and makes it more complicated than it needs to be.
Re: Htmlshell - generate HTML skeletons
#4Why do so many people still use redundant HTML tags? The opening and closing body and head tags aren't needed, nether is the closing html tag. It doesn't make that much difference to the page as a whole but it adds another level of indenting to your code and makes it more complicated than it needs to be.
Re: Htmlshell - generate HTML skeletons
#5e.g. box centered in the center of the screen, three column fixed, two column flexible, etc.
here's a page with a whole listing of example css layouts. http://www.maxdesign.com.au/articles/css-layouts/
Re: Htmlshell - generate HTML skeletons
#6Re: Htmlshell - generate HTML skeletons
#7Just what I need to make a little one-off JavaScript app. To be more DRY, shouldn't the "Autorun JavaScript" make use of selected JavaScript libraries (i.e. jQuery if possible)?
Moreover, html5boilerplate recommends NOT to include the /1/ query: http://html5boilerplate.com/html5boilerplate-site/built/en_U...
Re: Htmlshell - generate HTML skeletons
#8Why do so many people still use redundant HTML tags? The opening and closing body and head tags aren't needed, nether is the closing html tag. It doesn't make that much difference to the page as a whole but it adds another level of indenting to your code and makes it more complicated than it needs to be.
"Let us redefine progress to mean that just because we can do a thing, it does not necessarily mean we must do that thing."
Other than the initial level of indenting, which is basically a non-issue for most people I suspect, there just isn't any reason to omit tags like this.
At the same time, they make the markup clearer, and help a reader quickly delineate between two important sections of the document. Therefore, since they provide at least a very small positive benefit, it is perfectly reasonable, IMHO, to include them.
Re: Htmlshell - generate HTML skeletons
#9Why do so many people still use redundant HTML tags? The opening and closing body and head tags aren't needed, nether is the closing html tag. It doesn't make that much difference to the page as a whole but it adds another level of indenting to your code and makes it more complicated than it needs to be.
But even now knowing that info... I will continue to use them. Yes, it adds another level of indenting... but personally I prefer that. Text that is without a left margin tends to be a little harder to read. I also like to have a visual grouping of the elements. I think I would disagree that it "makes it more complicated" to have those tags.
Re: Htmlshell - generate HTML skeletons
#10Just what I need to make a little one-off JavaScript app. To be more DRY, shouldn't the "Autorun JavaScript" make use of selected JavaScript libraries (i.e. jQuery if possible)?
I agree. Moreover, html5boilerplate recommends NOT to include the /1/ query: http://html5boilerplate.com/html5boilerplate-site/built/en_U...