Lab2
Adding <meta> tags to Fish Creek Web Page
Character Encoding
-
Specifies the character set used in the document (prevents character corruption).
Author Information
-
States the author of the web page.
Description for SEO
-
Provides a summary of the page’s content, which may be shown in search engine results.
Viewport Settings
-
Makes the site responsive (especially for mobile devices).
Using ChatGPT to Understand SEO Techniques in HTML/CSS
What I Learned from ChatGPT and Whether I Could Corroborate It
When I asked ChatGPT how to incorporate SEO techniques into HTML and CSS, it provided several useful suggestions. These included:
Using descriptive and unique
<title>tags on each pageAdding
<meta>tags likedescription,author, andviewportfor mobile responsivenessStructuring content with proper heading tags (
<h1>,<h2>, etc.)Including
altattributes for images to improve accessibility and SEOLinking pages together to support internal navigation and indexing
To verify this information, I reviewed articles from a few reputable sources:
Moz – Beginner’s Guide to SEO
Backlinko – SEO in 2024
Hobo Web – Title Tag Best Practices
Search Engine Journal – SEO Basics to Be Successful
These articles confirmed the ChatGPT response. Most of the sites provided more advance solutions and a deeper understanding of how search engines work and what exactly optimisation can improve but the basics remained largely the same. They emphasised the importance of title and meta tags, mobile optimisation, clean site structure, page speed, and semantic HTML. I was able to corroborate all the main points, which shows that the advice ChatGPT gave was reliable and based on widely accepted SEO practices.
Here are two pieces of code that I will use on my Fish Creek website to improve SEO:
<meta name="description" content="Fish Creek Animal Hospital offers 24/7 veterinary services including medical, surgical, and dental care.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Comments
Post a Comment