You can control the size of an image using the width and height properties in CSS, just like you can for any other box
two common ways in which you can horizontally center an image:
On the containing element, you can use the text-align property with a value of center.
On the image itself, you can use the use the margin property and set the values of the left and right margins to auto.
see the example below :
repeat The background image is repeated both horizontally and vertically (the default way it is shown if the backgroundrepeat property isn’t used).
repeat-x The image is repeated horizontally only (as shown in the first example on the left).
repeat-y The image is repeated vertically only.
no-repeat The image is only shown once. The background-attachment property specifies whether a background image should stay in one position or move as the user scrolls up and down the page.
If you want to overlay text on a background image, the image must be low contrast in order for the text to be legible.
Visits : This is the number of times people have come to your site. If someone is inactive on your site for 30 minutes and then looks at another page on your site, it will be counted as a new visit.
Unique Visits : This is the total number of people who have visited your site over the specified period. The number of unique visits will be lower than the number of visits if people have been returning to your site more than once in the defined period.
Page Views : The total number of pages all visitors have viewed on your site.
Pages per Visit : The average number of pages each visitor has looked at on your site per visit.
The video and audio elements allow us to embed video and audio into web pages see the examples below :