What is iframe used for? [closed] - html

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
What is the purpose of the iframe tag in HTML? What is it used for?

An <iframe> is used for containing (X)HTML documents in other (X)HTML documents. This enables updates of parts of a website while the user browses, without making them reload the whole thing. (This is now largely replaced by AJAX).
Also, see:
http://w3schools.com/TAGS/tag_iframe.asp
http://en.wikipedia.org/wiki/HTML_element#Frames

Be careful. <iframe> tags are becoming less common.
I wouldn't use iframes except in really specific cases, because it is nonstandard.
here is the link
However, Google images still uses <iframe> tags.

Related

CSS Hiding and Showing an element on page resize? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Can this by done with CSS? I have multiple selections on a page and will be viewed on mobile, desktop to tablets. An easy way would just be to hide certain unnecessary elements when the page gets rezized. I know and I am also having the elements repositioned with with div blocks.
As the comments point out: using CSS media queries is your answer.
Here are a few links to great resources.
http://css-tricks.com/snippets/css/media-queries-for-standard-devices/
http://css-tricks.com/css-media-queries/
There are also available web frameworks to use, as well as differing philosophy on how to go about doing responsive web design.
http://stuffandnonsense.co.uk/projects/320andup/

Does Tiki Wiki CMS has some particular requirements when it comes to bulding templates? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have to slice a psd and construct a first version template of a future Tiki Wiki CMS web application. Are there some particular features which has to be taken into consideration?
By "features" you mean features of the Tiki CMS ? As there are many parts to be styled I always start "from scratch" with empty CSS (see styles/empty.css) and import the layout base, then I add my own styling or overrides (sometimes you need !important to override). Otherwise there is nothing more difficult than with any other HTML site or CMS. You just need Firebug (or simmilar add-on) installed in your browser to inspect the code for CSS classes and ids to be styled, which is very helpful.
luci

How do I convert an existing static HTML website to Joomla? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a huge problem with converting my pre-existing HTML based webpage into Joomla.
I have tried for the last 36hours to figure out how this Cms works, and it all seems to be a waste of time. I wonder if there is any quicker solution in my case? Or do I have to adapt my entire content and rewrite big chunks of code? It doesnt seem to be any easy way to just add the HTML i have and just work with what i already have. I am really content with my webpage as it is, all I want is to publish it and enable some login panel for admins and lower level admins...
Some guidance here thanks
Turn off the editor (edit your profile and set editor to none) and then create an article for each html page by just pasting in the html (but not the head or the body tags).
Have you looked at the beginner materials?
http://docs.joomla.org/Beginners

How can I send the content of a textarea to the textarea of "codepad.org"? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to send the content of a text area from a webpage to the text area in codepad.org.
How can I do that ?
This and this link did not help in doing this ....
If this is not possible, then how can I use "codepad.org" in other webpages ...... ???
Unless the site has coded specific support for it (which I don't think codepad does), you cannot provide pre-defined values for the form elements, nor can you modify the textarea from your code.
I would create a paste and then embed it into your website using frames and the specific URL it gives you for your new paste.

What features of HTML5 can I use right now? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Any suggestions which feature can I use for simple web pages?
It really depends on how advanced you plan on making your website. Generally speaking most of the real browsers (NOT IE) support most of the html 5 elements.
Have a look at http://html5readiness.com/ to see what elements are supported by which browsers.
You can use new HTML5 tags which make markup more semantic. In order to get started right away, use this Initializr - HTML5 templates generator
http://caniuse.com is specifically designed to answer your question.