meta-tags

Wrong image displayed by LinkedIn Open Graph

半城伤御伤魂 提交于 2019-12-04 04:48:00
问题 I'm trying to share http://gbgtechweek.com/ on my LinkedIn profile. I have this meta tag: <meta property="og:image" content="http://gbgtechweek.com/img/gbgtechweek_img.png" /> However, LinkedIn chooses to show another image from the page (http://gbgtechweek.com/img/goteborg00.jpg) Is this because of the size, and how do I fix it? I tried to update by using "?!" in the end, so LinkedIn would re-fetch the Open Graph data, but didn't work. Any solutions? 回答1: LinkedIn (shockingly and sadly!)

Add meta tags to laravel page

南笙酒味 提交于 2019-12-04 04:40:37
I'm trying to add description and keywords to my Laravel pages. Is this way working? Or there is something wrong? @section('title') {{trans('strings.About')}} @stop @section('description', 'Share text and photos with your friends and have fun') @section('keywords', 'sharing, sharing text, text, sharing photo, photo,') @section('robots', 'index, follow') @section('revisit-after', 'content="3 days') Are you extending another template that uses all these sections ? They won't work on their own, they need to populate a placeholder in another template. It should be something like: <!-- layouts

Html meta keywords should contain commas?

血红的双手。 提交于 2019-12-04 04:11:56
is it important to use commas in the meta keywords? What if I don't have the commas? According to the W3 standards : Provide keywords and descriptions Some indexing engines look for META elements that define a comma-separated list of keywords/phrases, or that give a short description. Search engines may present these keywords as the result of a search. The value of the name attribute sought by a search engine is not defined by this specification . In other words, it's not defined by the HTML standard what a meta with name="keywords" should look like. It all depends on what your targetting.

Open graph meta tags

不想你离开。 提交于 2019-12-04 03:54:00
问题 I use Facebook application (shortstack) to make my page. I want to Personalize publication when I share it with short URL. I have test to create a open graph meta tags but it's don't work . 回答1: You need to put opengraph meta tags in your page like <meta property="og:title" content="The Rock"/> <meta property="og:type" content="movie"/> <meta property="og:url" content="http://www.imdb.com/title/tt0117500/"/> <meta property="og:image" content="http://ia.media-imdb.com/rock.jpg"/> <meta

How to Hide a Particular website page URL from Search engines?

不羁岁月 提交于 2019-12-04 03:49:18
问题 My project is an E-commerce website that It contains lot of static and dynamic pages. I want to hide only one page from Search engines. If any one search that text then it need not display on search engine like "Google","Yahoo" etc. http://www.mysitename.com/users/download/id The above url need to hide in search engines. If any one searching my mysitename then above link also displaying in Google search as of now. what i can do for this ? 回答1: Add a file robots.txt in your website root

meta refresh redirect to top frame

会有一股神秘感。 提交于 2019-12-04 03:24:43
问题 I have the following code: <html> <head> <title>title of this stuff</title> <script language="JavaScript"> if (top != self) top.document.title = document.title; </script> <meta http-equiv="refresh" content="2; URL=javascript:window.open('certainpage.html','_top');"> </head> <body> Body of this page </body> </html> and this doesn't work. I've googled for this and come to the same conclusion everywhere: this should work. But it doesn't. Can anyone help me out why this page isn't: 1. refreshing

Sharing on social media, the URL does not render any meta data

巧了我就是萌 提交于 2019-12-04 02:22:58
We have built a project (Web Application) in React .net core using react in client-side rendering. We've used react-helmet for dynamically assigning meta tags. The issue being when the app renders in the browser. The browser gets only the static HTML on initial load which does not include the dynamic meta tags we have set. However on inspecting you get those meta tags under "Elements". Also, if we use these URL for sharing on any social media, like WhatsApp or Facebook, the URL does not render any metadata as it should. Tried searching for solutions to our problem, the most obvious answer we

Can the order in which adding link and meta tags on head of a webpage have any adverse effect?

女生的网名这么多〃 提交于 2019-12-04 02:09:39
问题 I have added this code to my webpage with .php extension <?php include_once("cssheadertop.php")?> <link rel="stylesheet" href="button.css"> <?php include_once("cssheaderbottom.php")?> Now, cssheadertop.php contains the following code <head> <meta charset="utf-8"> <title>8mags - CSS Lessons</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../../bootstrap.min.css" media="screen"> <link rel="stylesheet" href="../../style.css"> <link href=

Why do web-developers still use meta-keywords and meta-description tags?

ε祈祈猫儿з 提交于 2019-12-04 02:00:18
问题 Google is not using meta-keywords tag at all because keywords are mostly used to spam search engines. Google is not using the meta-description tag for ranking. Sometimes the meta-description tag is used for the site-snippet in search results if part of the content does not fit. But mostly meta-description is generated automatically from the content of the page and meta-description is the same as beginning of the content of the page. Google has dropped the support of meta-keywords and meta

In a HTML file with charset=utf-8, do I still need to replace umlauts with ä?

拥有回忆 提交于 2019-12-03 22:18:07
Whenever I used a German umlaut in a HTML file in the past, always I replaced it by ä , ö etc. according to this table . I had no idea about encoding then, nor did I ever think about it. I just "knew" that when I would just use ä , ö etc. instead, many computers in other countries wouldn't be able to display the umlauts correctly. When I set the charset of an UTF-8 encoded HTML file to UTF-8 by putting <meta charset="utf-8"> into the header, do I still need to replace ä by ä , ö by ö and so on? For example: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ÄÖÜäöüß</title> </head>