First site page display to Second site - html

Good day,
I'm planning to create a site that can create pages and that pages can display to another site, is that possible?
The idea is to
Create pages on site A
Display pages on site B
Thank you :)

You can use <iframe> to display HTML from another source
<iframe src="B.html"></iframe>
You can also use URL
<iframe src="http://example.com"></iframe>

Related

How to embedded a angular developed project url into the word press site?

I already developed a web site using angular for the inventory. Suppose that url is https://inventory.example.net/search
Now I want to embedded above url into the page in the main site which was developed by using WordPress. Suppose that WordPress site has 5 tabs and one is called "Inventory". (https://www.example.net/inventory).
How can we display https://inventory.example.net/search contents when some one press on "Inventory" tab in www.example.net site?.
Thanks in advance.
You can use an iframe:
<iframe src="https://inventory.example.net/search" title="information about website"></iframe>
Check out https://www.w3schools.com/tags/tag_iframe.ASP for information on iframes to make sure it's right for this use case.

i want to embed iframe table from website

I want to embed the currency rate table from this website https://myfin.by/currency/russia
without embedding the whole page!
so anyone can type the right embedding code for me!
thank you >
This is not a perfect solution but you can get the ID of the table #currency-content, add this onto the URL to go to that part of the page. https://myfin.by/currency/russia#currency-content
I then made the iframe have scrolling off so that you can't see the rest of the site. You probably want to add a width as well because it is currently very thin.
<iframe scrolling='no' height="3200" src="https://myfin.by/currency/russia#currency-content"></iframe>

How to set iframe correctly in web page

Here I give an code. I want to set the iframe but is not showing anything. I don't understand what is the problem.
<iframe src="https://twitter.com/money2020"></iframe>
"Twitter's site blocks direct iframe display through the secure hypertext transfer protocol, which keeps someone from making a direct iframe to any given page on Twitter. Instead, Twitter widgets need to be created through the corresponding Twitter account to be embedded on a site within an iframe."
http://www.wikihow.com/Create-a-Twitter-Hashtag-Widget
https://twitter.com/settings/widgets

Link from external to specific part on a one page site

I have built my site based on a bootstrap template. It's a one page site with scrolling but I am currently redeveloping it so that my portfolio pages are separate pages and link back to the homepage. I want to link back to the gallery on the one page part of the site and therefore need to link to the homepage and get it to scroll instantly to the gallery. Any ideas on how I would do this. Site as it was is at www.js-gd.co.uk
Thanks
Jon
You could add an id to the section you are wanting and then have url.com/page#id
If you post the code I will be sure to help you

Index page in Joomla

I have made a homepage in Joomla 2.5, and I need my front page to be different then the page made in Joomla.
My best solution then, is to make the front page in pure HMTL, and then redirect to the site made in Joomla. Is this possible? or is there an easier way to do it? for example with a plugin or something?
Create a custom html page and create it an article and then assign this article to front page. In this way you can display your custom html page to hope page of joomla.
Further if you want to remove even the headers and footers of the joomla page for home page this can be done in various ways
Make module positions and display the header and footer in it an
then in admin do not publish these modules for home page
We have
variable in template index.php which give us flags weather this is
home page you can use this flag and put a condition like if this is
home page dont display the header and footer.
Hope it will help you.
I can't really understand your question. If you want to load HTML only use custom HTML module rendered in your homepage
What are you trying to achieve? Without knowing more, I have two thoughts.
a. Joomla uses index.php. A lot of the time web servers look for index.html first. So if you create an index.html file and upload it to your root folder, it will display that first and not read your Joomla! site. If that doesn't work, check your web server to see the order that it looks for your start page. That is a setting that can be changed. (Depending on your hosting situation)
or b. You can set different templates for a single Joomla! site. you could set a different template for the homepage compared to the rest of the site. (I just need to know more on what you are trying to accomplish)
Have a great one.