What's wrong on my index file? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What's wrong on my index file?

Hi1 I'm newbie on programming and recently I've created a website - or troed to do so ( http://profricardo.ueuo.com ) . One of the biggest problems is that facebook says it may be dangerous. would you mind reviewing my index file? thanks <!DOCTYPE html> <html> <head> <style> *{ padding: 0; margin:0; } body { width: 100%; } div.container { border: 1px solid blue; } header, footer { padding: 1em; color: white; background-color: orange; clear: left; text-align: center; } nav { float: left; max-width: 400px; margin: 0; padding: 1em; } nav ul { list-style-type: none; padding: 0; } nav ul a { text-decoration: none; } article { margin-left: 200px; border-left: 1px solid DarkBlue; padding: 1em; overflow: hidden; } </style> </head> <body> <div class="container"> <header> <h1 style="font-family:verdana;">Prof Ricardo</h1> </header> <nav> <ul> <li style="color:DarkBlue;font-family:verdana;"><a href="http://profricardoo.blogspot.com.br/p/sites-e-aplicativos-para-estudar-idiomas.html">Sites para estudar idiomas</a></li> <li style="color:DarkBlue;font-family:verdana;"><a href="#">Páginas no Facebook</a></li> <li style="color:DarkBlue;font-family:verdana;"><a href="#">Vídeos</a></li> <li style="color:DarkBlue;font-family:verdana;"><a href="#">Apps</a></li> <li style="color:DarkBlue;font-family:verdana;"><a href="contactus.html">Fale comigo!</a></li> </ul> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.8"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <div class="fb-like" data-href="https://www.facebook.com/ProfRicardoVernaut/" data-width="30" data-layout="standard" data-action="like" data-show-faces="true" data-share="true"></

20th Feb 2017, 10:57 PM
RyckRichards
RyckRichards - avatar
1 Answer
+ 4
It's because of your subdomain, I think so. Facebook only accepts top-level domains such as: .com, .net ... and also some trusted subdomains. ueuo.com doesn't seem to be a trusted one :) No SSL included also.
21st Feb 2017, 12:08 AM
Dev
Dev - avatar