Weppu / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Where Are Your Meta Tags? #1

Open robynmaya opened 6 years ago

robynmaya commented 6 years ago

https://github.com/Weppu/prj-rev-bwfs-dasmoto/blob/0a03955e25bea2c568070882d65b25852b343062/ArtsCrafts/index.html#L3-L6

Try including various types of meta tags on your HTML next time, for example :

<meta charset="utf-8">
<meta name="description" content="Tea Cozy - Portland's Best Tea Provider">
<meta name="keywords" content="Tea, Portland, Best Cafe">
<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