AnxiousSnail / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

More Meta Tags Will Be Better #1

Open robynmaya opened 6 years ago

robynmaya commented 6 years ago

https://github.com/AnxiousSnail/prj-rev-bwfs-dasmoto/blob/74586bd6433427b179f3e21ad2907e3a8011577d/Dasmoto's/index.html#L5

Good job on including a meta tag, but try to practice including other types of meta tags, for example :

<meta name="description" content="Best Painting Supplier In The City">
<meta name="keywords" content="Painting, Equipment, Tools, Art, Gallery">
<meta name="author" content=“John Doe">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

A description will appear on search engine as a brief description of your page, although it may or may not affect your page/site ranking, but it is a good practice still - at least, a compelling description can entice more visitors to come to your site.

A viewport element gives the browser instructions on how to control the page's dimensions and scaling.

The width=device-width part sets the width of the page to follow the screen-width of the device (which will vary depending on the device).

The initial-scale=1.0 part sets the initial zoom level when the page is first loaded by the browser.

Read more

AnxiousSnail commented 6 years ago

Excellent! I’ll be sure to include those in future projects, and I’ll read more about meta tags.

To be honest, the tag that was included in my code was added by Atom when it auto-completed the boiler plate code.