Results: 1022
Warning: Article lacks heading. Consider using h2-h6 elements to add identifying headings to all articles
Warning: Section lacks heading. Consider using h2-h6 elements to add identifying headings to all sections
include resource
The statement does not work when config.php is one step out of the root directory on servage.net
include_once '../../config.php';
But works one of these lines:
include_once './../config.php';
include_once $_SERVER['DOCUMENT_ROOT'].'/../config.php';
Output of the second solution is:
/storage/content/95/1009995/test.sibrdzne.ge/public_html/../config.php
Resize the background image to cover the entire container, even if it has to stretch the image or cut a little bit off one of the edges.
<meta name="viewport" content="width=device-width, initial-scale=1.0">
This tag gives the browser instructions on how to control the page's dimensions and scaling. The line should always be included to create a responsive layout
@media screen and (max-width: 500px) {
    nav ul li {
        width: 50%;
        font-size: 120%;
    }
}
@media screen and (max-width: 620px) {
    nav ul li {
        width: 33%;
    }
}
nav ul li {
    width: 25%;
    border-bottom: 1px solid #bababa;
}
@media screen and (max-width: 500px) {
    .hide-mobile {
        display: none;
    }
}
@media screen and (max-width: 500px) {
    div.mobile-collapse {
        width: auto;
        float: none;
        margin-right: 0;
    }
}
Results: 1022