Week 2: Learning Outcomes and Lab work.
Hello all again! Welcome to week 2 of my blog.
Learning Outcomes
Initially for the lab I coded up two basic html files for a trail website called "Fish Creek Animal Hospital". I laid down the html which would mark up the basic structure or skeleton of the site. It will be added to at later stages as a learning tool. I then conducted some research on Meta tags and SEO, which is detailed below.
charset and robots
Meta Tags
“The <meta> tag defines metadata about an
HTML document. Metadata is data (information) about data.”
-from w3schools.com
These tags are found inside the <head> element
of the document and are unseen by the end user of the site. Four different uses
of the meta tag are as follows:
- Keywords of the webpage. A few words summing up
what your website is for, i.e. for a taxi business: “taxi, service, Dublin”.
These add to SEO. Search engines will specifically hit on keywords.
- Author Who wrote this page? The author tag will
let you know.
- Description. The description describes your webpage. Key
in SEO and for accessibility. Write a few lines here explaining what youre page is about, this is distinct to keywords and a few succint sentences will help your SEO as well.
- Viewport . Its important that your website looks
good and works well on all devices in this modern age of phones, tablets and desktops. Gone
are the days of only designing for one screen type, responsiveness is key for web development. This can be helped
with the viewport meta tag.
- Charset Specifies the character encoding for the HTML document. UTF-8 covers most characters in most of the spoken languages in the world.
- Robots this tag controls how a page is indexed and seved to end users in Google Search results. The tag can be uniqely altered per page - for example if you do not want Google to index the page, content = noindex. Using "robots" will apply the rules to all crawlers. If you want a specific crawler then you will have to name it. Examples are googlebot, googlebot-news.
As you can see from above, <meta> tags are
pretty important! I have implemented the above in the html files. Below is the
code used:
Best practise involves succinct and accurate descriptions, and also unique tags for each page.
2. Description tags. A description meta tag gives search engines a summary of what a page is about. Descriptions can be longer, up to a few sentences long. Similar to the title tag anything that the user searched for will appear in bold on the google search results page. Google may even use parts of these descriptions on the search result page.
Best practise involves not using only a collection of keywords (i.e. write a proper sentence), using unique descriptions for each individual page, NOT copying and pasting the entire page into the description and overly generic descriptions, i.e. "This is a horse page"
Best practise involves using words, simple structure of site, and one URL per redirect. It is also best to avoid capitalization altogether for simplicity.
4. As always, high user experience and decent website design across all devices will greatly improve SEO. Mobile pages are key in websites these days. A tool for delivering a good mobile page is AMP, it delivers mobile pages much quicker than before. Google has now switched to mobile-first indexing, so the emphasis on mobile presence become even more important than ever.
Two pieces of code to improve the SEO of the Fish Creek website
Re-examining the meta tag description
I have since updated it to the following for the "index" page:
Comments
Post a Comment