A Site as Background

0

Hello, is it possible to put a website as backgroud using css, as in background: url ("file: /// C: /logo.gif")?

For example background: url ("file: ///www.uol.com")?

    
asked by anonymous 16.06.2017 / 12:37

1 answer

2
Hello, as you must specify a file to be your background I believe that a site will not work what would work would be you call the site inside an iframe. which is like an embed on your site.

<iframe src="https://www.uol.com.br"width="300" height="300">
  <p>Your browser does not support iframes.</p>
</iframe>
    
16.06.2017 / 12:47