What is a quality site?
Google now has an accurate definition of what a quality site is. The link gives us it at the heart of the page.
On this page we will see the criteria that determine the quality and modern site from the point of view of the visitor...
They become even more important after the efforts of search engines to filter sites in search results depending on their quality .
Although the quality of the site has always been relevant, it gained particular importance in April 2011 with Panda Update, an update to Google's algorithm to eliminate poor quality pages and which even goes further, fining the entire site if some of its content is not valued by users and does not receive feedback .
- Accessibility. The content of the site should be easy to find and use for everyone .
- Stability. The site consists of all pages.
- Ergonomics. It's easy to use.
- Available. Still online.
- Functions. Offer services that the user appreciates.
- Flexibility. It adapts to the user's needs.
Here are in detail all the practical elements of the site, supplementing and consistent with Maslow's criteria. At the end of the page, you will find a link to the criteria given by Google.
The most common position is the following:
1) Header. It contains a logo and additional elements. It's not a good place to advertise.
2) Sidebar on the right or left. The right side makes the site more accessible to mobile devices.
4) Text.
4) Footer containing practical references such as terms of use. Links to partner sites are ignored by both engines and visitors. In too many numbers, they fine the site.
To be original to search engines, content must contain text with keywords not contained in such articles.
Text must be multilevel with <h2>, <h3>, etc. tags and have a header in the <h1> tag. Do not use these tags as layout elements; CSS style sheets exist for this.
Modern site with pictures and videos. See how to create a gallery of images or use lightbox to show an image, text or form.
The " title" attribute of the <a> tag allows you to display a message when the mouse stops at a link. Similarly, the "alt" attribute provides information about images .
2) Must stay on the site for a long time: the pages are interconnected, the content is interesting. You can use the tricks of a novelist, arouse interest and even create suspicion!
In the search engine results, click on the page. This requires a title and description that encourages you to choose this page over another, even if it was placed earlier.
The title is placed in the <title> tag in the <head> section of the page source code, as well as in the <h1> tag in the page body. To do this, you can use PHP :
<$title="Mon titre";
<title><?php echo $title?></title>
<h1><?php echo $title?></h1>
<meta name="description" content="ici la description de la page">
The basic PHP template looks like this:
<?php
$title="Mon titre";
include("top.php");
include("sidebar.php");
?>
<body>
...
</body>
<?php include("footer.php");
Also see What is site quality for a search engine. How he can appreciate that. And if you read in English, then Why our newspaper is dyeing, a summary in texts and images of bad practices.
Templates
This is a list of sites where you can customize templates for page design. Note that the variable width interface, also called "expandable," which is suitable for screen width, is preferred because internet users do not necessarily have the same screen resolution as you.
- Template for web application.
This .fr template does not provide graphics, but an example of a stylesheet page for the application interface.