SlideShare a Scribd company logo
HTML and CSS
• HTML is not a programming language, it is a markup
language
• HTML consists of set of tags and attributes
• HTML is language used to develop any website
• Basic understanding of HTML is necessary for SEO
What is HTML?
– HTML 4.01 [2000]
– XHTML 1.1 [2001]
– HTML 5.0 [2014 – Recommendation]
HTML Editor :
– We can use either notepad or notepad++ or Dreamweaver to create
html pages.
HTML Versions
<doctype html> [To define version of html]
<html>
<head>
<title> Welcome to site </title>
</head>
<body>
</body>
</html>
Structure of HTML
Tag and Attributes
<p align=“center”> Welcome to Site </p>
Start
Tag
Attribute Content
End
Tag
HTML Tag Elements
• Head Elements
• Structure Elements
• Content Elements
• Multimedia Elements
• Form Element
SEO Related Head Tags
• Title Tag
• Meta Tags
• Canonical Tags
• CSS (Important for Optimization)
• Java Script (Important for Optimization)
• Heading Tags (To define page headings)
– <h1> </h1> <h2> </h2> ……. <h6> </h6>
• Paragraph : <p> </p>
– To display content of the page
• Preformatted: <pre> </pre>
– To display the content exactly as input format
• Span: <span> </span>
– To display the inline content block
• Breaks : <hr/> and <br/>
• Comments : <!-- This is a comment -->
Content Tags
List Tags
• Unordered List
<ul>
<li>Home</li>
<li>About Us</li>
<li>Clients</li>
</ul>
• Ordered List
<ol>
<li>Home</li>
<li>About Us</li>
<li>Client</li>
</ol>
• Home
• About Us
• Clients
1. Home
2. About Us
3. Clients
Nested Lists
• Unordered List
<ul>
<li>Home</li>
<li>About Us
<ul> <li>Vision </li></ul>
</li>
<li>Clients</li>
</ul>
• Ordered List
<ol>
<li>Home</li>
<li>About Us
<ol> <li>Vision </li> </ol>
</li>
<li>Client</li>
</ol>
• Home
• About Us
• Vision
• Clients
1. Home
2. About Us
1. Vision
3. Clients
• Links are used to create relation between pages or external site
Anchor Links
<a href=“page.html" target="_blank"> Link </a>
<a href=“http://www." target="_blank"> Link </a> External
Internal
<a href=“mailto:" target="_blank"> Link </a> Mail Link
 Image Tag – To Display Images
 Flash Tag - To Display Flash Animation
Graphic Tags
<img src=“image path” alt=“some text” width=“200” height=“200” border=“1”>
<object …> <embed> </embed> </object>
• To retrieve content from the other sources
• Using IFRAME in practical purpose
– Facebook Like Box
– Google Maps
– Youtube Video
• Generally not recommended for SEO Purpose
iFrame
<iframe src=“ ” width=“ ” height=“ ” frameborder=“ 0”> </iframe>
CSS Concepts
• Cascading Style Sheet is used to define the
page design
– It controls how the elements are displayed
– What are the dimensions of elements
– What are the colors of the elements
– CSS helps in developing Responsive Design
CSS Tags
• Internal CSS
– <style> …. </style> - This is called as internal css
and must be avoided in website
• External CSS
– <link rel=“stylesheet” href=“style.css” />
– To include the CSS from external page
CSS in SEO Point of View
• Use CSS to design a responsive website.
• Optimize the CSS to load the site faster.
• Use a single CSS file rather than using multiple
CSS files, which decrease the requests.
• Avoid using the hidden elements with CSS
Java Script Basics
• JS is scripting language to implement features
like sliders, validations and other useful
concepts in webpage
• Internal JS
– <script> </script>
• External JS
– <script src=“file.js”> </script>
Java Script in SEO Point View
• Crawler can render basic Java Script.
• Crawler cannot render complex java script
• Provide the crucial content in HTML format
• Avoid using external Ajax Content to load content
in page
• Avoid Javascript Drop Down menus

More Related Content

What's hot

Web Components
Web ComponentsWeb Components
Web Components
Nikolaus Graf
 
Introduction to Wordpress
Introduction to WordpressIntroduction to Wordpress
Introduction to Wordpress
Reuben Rock
 
Introducción a HTML5 y CSS3
Introducción a HTML5 y CSS3Introducción a HTML5 y CSS3
Introducción a HTML5 y CSS3
Paradigma Digital
 
0x02-HTML.pdf
0x02-HTML.pdf0x02-HTML.pdf
Custom clearance procedure for export
Custom clearance procedure for exportCustom clearance procedure for export
Custom clearance procedure for exportStudsPlanet.com
 
HTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTMLHTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTML
Grayzon Gonzales, LPT
 
Eye catching HTML BASICS tips: Learn easily
Eye catching HTML BASICS tips: Learn easilyEye catching HTML BASICS tips: Learn easily
Eye catching HTML BASICS tips: Learn easily
shabab shihan
 
Javascript Basics
Javascript BasicsJavascript Basics
Javascript Basics
Vishal Mittal
 
What is css
What is cssWhat is css
What is css
Christopher Tetta
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
Sanjeev Kumar
 
Javascript best practices
Javascript best practicesJavascript best practices
Javascript best practices
Jayanga V. Liyanage
 
Cours HTML/CSS
Cours HTML/CSSCours HTML/CSS
Cours HTML/CSS
Axel Chalon
 
HTML5 Tutorial
HTML5 TutorialHTML5 Tutorial
HTML5 Tutorial
Avinash Malhotra
 
HTML and Responsive Design
HTML and Responsive Design HTML and Responsive Design
HTML and Responsive Design
Mindy McAdams
 
HTML and CSS crash course!
HTML and CSS crash course!HTML and CSS crash course!
HTML and CSS crash course!
Ana Cidre
 
คู่มือ Dream cs3
คู่มือ Dream cs3คู่มือ Dream cs3
คู่มือ Dream cs3
Natda Wanatda
 
Html basic
Html basicHtml basic
Html basic
Nital Shingala
 
Maintainable CSS
Maintainable CSSMaintainable CSS
Maintainable CSS
Stephen Hay
 
Html5 and-css3-overview
Html5 and-css3-overviewHtml5 and-css3-overview
Html5 and-css3-overview
Jacob Nelson
 

What's hot (20)

Web Components
Web ComponentsWeb Components
Web Components
 
Introduction to Wordpress
Introduction to WordpressIntroduction to Wordpress
Introduction to Wordpress
 
Introducción a HTML5 y CSS3
Introducción a HTML5 y CSS3Introducción a HTML5 y CSS3
Introducción a HTML5 y CSS3
 
0x02-HTML.pdf
0x02-HTML.pdf0x02-HTML.pdf
0x02-HTML.pdf
 
Custom clearance procedure for export
Custom clearance procedure for exportCustom clearance procedure for export
Custom clearance procedure for export
 
HTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTMLHTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTML
 
Eye catching HTML BASICS tips: Learn easily
Eye catching HTML BASICS tips: Learn easilyEye catching HTML BASICS tips: Learn easily
Eye catching HTML BASICS tips: Learn easily
 
Javascript Basics
Javascript BasicsJavascript Basics
Javascript Basics
 
What is css
What is cssWhat is css
What is css
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
Javascript best practices
Javascript best practicesJavascript best practices
Javascript best practices
 
Cours HTML/CSS
Cours HTML/CSSCours HTML/CSS
Cours HTML/CSS
 
HTML5 Tutorial
HTML5 TutorialHTML5 Tutorial
HTML5 Tutorial
 
HTML and Responsive Design
HTML and Responsive Design HTML and Responsive Design
HTML and Responsive Design
 
HTML and CSS crash course!
HTML and CSS crash course!HTML and CSS crash course!
HTML and CSS crash course!
 
คู่มือ Dream cs3
คู่มือ Dream cs3คู่มือ Dream cs3
คู่มือ Dream cs3
 
Html basic
Html basicHtml basic
Html basic
 
Maintainable CSS
Maintainable CSSMaintainable CSS
Maintainable CSS
 
Html5 and-css3-overview
Html5 and-css3-overviewHtml5 and-css3-overview
Html5 and-css3-overview
 
Introducing Cascading Style Sheets
Introducing Cascading Style SheetsIntroducing Cascading Style Sheets
Introducing Cascading Style Sheets
 

Viewers also liked

Black Hat SEO Techniques 2014
Black Hat SEO Techniques 2014 Black Hat SEO Techniques 2014
Black Hat SEO Techniques 2014
Web Trainings Academy
 
SEO Keyword Research and Competition Analysis
SEO Keyword Research and Competition Analysis SEO Keyword Research and Competition Analysis
SEO Keyword Research and Competition Analysis
Web Trainings Academy
 
Seo Onpage Optimization Guide
Seo Onpage Optimization Guide Seo Onpage Optimization Guide
Seo Onpage Optimization Guide
Web Trainings Academy
 
Digital Marketing Training Course in Hyderabad
Digital Marketing Training Course in HyderabadDigital Marketing Training Course in Hyderabad
Digital Marketing Training Course in Hyderabad
Web Trainings Academy
 
Digital Marketing PPT(Presentation) - Digital Marketing Strategies
Digital Marketing PPT(Presentation) - Digital Marketing StrategiesDigital Marketing PPT(Presentation) - Digital Marketing Strategies
Digital Marketing PPT(Presentation) - Digital Marketing Strategies
Web Trainings Academy
 
SEO Training in Hyderabad | SEO Classes in Hyderbad | SEO Coaching in Hyde...
SEO Training in Hyderabad |  SEO  Classes in Hyderbad | SEO Coaching in  Hyde...SEO Training in Hyderabad |  SEO  Classes in Hyderbad | SEO Coaching in  Hyde...
SEO Training in Hyderabad | SEO Classes in Hyderbad | SEO Coaching in Hyde...Prasad Reddy
 
Website Designing with WordPress for SEO Beginners
Website Designing with WordPress for SEO BeginnersWebsite Designing with WordPress for SEO Beginners
Website Designing with WordPress for SEO Beginners
Web Trainings Academy
 
Penguin Update Recovery - Step by Step Guide
Penguin Update Recovery - Step by Step GuidePenguin Update Recovery - Step by Step Guide
Penguin Update Recovery - Step by Step Guide
Web Trainings Academy
 
Facebook Marketing Strategy with Paid Ads
Facebook Marketing Strategy with Paid AdsFacebook Marketing Strategy with Paid Ads
Facebook Marketing Strategy with Paid Ads
Web Trainings Academy
 
Twitter Marketing Basics - Twitter Marketing Guide
Twitter Marketing Basics - Twitter Marketing GuideTwitter Marketing Basics - Twitter Marketing Guide
Twitter Marketing Basics - Twitter Marketing Guide
Web Trainings Academy
 
Introduction to Digital Marketing
Introduction to Digital MarketingIntroduction to Digital Marketing
Introduction to Digital Marketing
Web Trainings Academy
 
SEO Resume Sample
SEO Resume SampleSEO Resume Sample
SEO Resume Sample
Hemendra Singh
 
Google AdWords Tutorial
Google AdWords TutorialGoogle AdWords Tutorial
Google AdWords Tutorial
zcamusio
 
Basics of Search Engines and Algorithms
Basics of Search Engines and AlgorithmsBasics of Search Engines and Algorithms
Basics of Search Engines and Algorithms
Web Trainings Academy
 
Digital Marketing Training Syllabus
Digital Marketing Training SyllabusDigital Marketing Training Syllabus
Digital Marketing Training Syllabus
Web Trainings Academy
 
Mastering Google Adwords In 30 Minutes
Mastering Google Adwords In 30 MinutesMastering Google Adwords In 30 Minutes
Mastering Google Adwords In 30 Minutes
Nik Cree
 
Google seo-search-engine-optimization-introduction-powerpoint-presentation
Google seo-search-engine-optimization-introduction-powerpoint-presentationGoogle seo-search-engine-optimization-introduction-powerpoint-presentation
Google seo-search-engine-optimization-introduction-powerpoint-presentationSandeep Sharma
 
Google AdWords Overview
Google AdWords Overview Google AdWords Overview
Google AdWords Overview Saurabh Bhambry
 

Viewers also liked (18)

Black Hat SEO Techniques 2014
Black Hat SEO Techniques 2014 Black Hat SEO Techniques 2014
Black Hat SEO Techniques 2014
 
SEO Keyword Research and Competition Analysis
SEO Keyword Research and Competition Analysis SEO Keyword Research and Competition Analysis
SEO Keyword Research and Competition Analysis
 
Seo Onpage Optimization Guide
Seo Onpage Optimization Guide Seo Onpage Optimization Guide
Seo Onpage Optimization Guide
 
Digital Marketing Training Course in Hyderabad
Digital Marketing Training Course in HyderabadDigital Marketing Training Course in Hyderabad
Digital Marketing Training Course in Hyderabad
 
Digital Marketing PPT(Presentation) - Digital Marketing Strategies
Digital Marketing PPT(Presentation) - Digital Marketing StrategiesDigital Marketing PPT(Presentation) - Digital Marketing Strategies
Digital Marketing PPT(Presentation) - Digital Marketing Strategies
 
SEO Training in Hyderabad | SEO Classes in Hyderbad | SEO Coaching in Hyde...
SEO Training in Hyderabad |  SEO  Classes in Hyderbad | SEO Coaching in  Hyde...SEO Training in Hyderabad |  SEO  Classes in Hyderbad | SEO Coaching in  Hyde...
SEO Training in Hyderabad | SEO Classes in Hyderbad | SEO Coaching in Hyde...
 
Website Designing with WordPress for SEO Beginners
Website Designing with WordPress for SEO BeginnersWebsite Designing with WordPress for SEO Beginners
Website Designing with WordPress for SEO Beginners
 
Penguin Update Recovery - Step by Step Guide
Penguin Update Recovery - Step by Step GuidePenguin Update Recovery - Step by Step Guide
Penguin Update Recovery - Step by Step Guide
 
Facebook Marketing Strategy with Paid Ads
Facebook Marketing Strategy with Paid AdsFacebook Marketing Strategy with Paid Ads
Facebook Marketing Strategy with Paid Ads
 
Twitter Marketing Basics - Twitter Marketing Guide
Twitter Marketing Basics - Twitter Marketing GuideTwitter Marketing Basics - Twitter Marketing Guide
Twitter Marketing Basics - Twitter Marketing Guide
 
Introduction to Digital Marketing
Introduction to Digital MarketingIntroduction to Digital Marketing
Introduction to Digital Marketing
 
SEO Resume Sample
SEO Resume SampleSEO Resume Sample
SEO Resume Sample
 
Google AdWords Tutorial
Google AdWords TutorialGoogle AdWords Tutorial
Google AdWords Tutorial
 
Basics of Search Engines and Algorithms
Basics of Search Engines and AlgorithmsBasics of Search Engines and Algorithms
Basics of Search Engines and Algorithms
 
Digital Marketing Training Syllabus
Digital Marketing Training SyllabusDigital Marketing Training Syllabus
Digital Marketing Training Syllabus
 
Mastering Google Adwords In 30 Minutes
Mastering Google Adwords In 30 MinutesMastering Google Adwords In 30 Minutes
Mastering Google Adwords In 30 Minutes
 
Google seo-search-engine-optimization-introduction-powerpoint-presentation
Google seo-search-engine-optimization-introduction-powerpoint-presentationGoogle seo-search-engine-optimization-introduction-powerpoint-presentation
Google seo-search-engine-optimization-introduction-powerpoint-presentation
 
Google AdWords Overview
Google AdWords Overview Google AdWords Overview
Google AdWords Overview
 

Similar to HTML and CSS Basics for SEO Professional

Html css crash course may 11th, atlanta
Html css crash course may 11th, atlantaHtml css crash course may 11th, atlanta
Html css crash course may 11th, atlanta
Thinkful
 
DESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptx
DESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptxDESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptx
DESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptx
bmit1
 
Html:css crash course (4:5)
Html:css crash course (4:5)Html:css crash course (4:5)
Html:css crash course (4:5)
Thinkful
 
Lab_Ex1.pptx
Lab_Ex1.pptxLab_Ex1.pptx
Lab_Ex1.pptx
sherrilsiddhardh
 
The web context
The web contextThe web context
The web context
Dan Phiffer
 
Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)
Thinkful
 
Thinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSThinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSS
TJ Stalcup
 
Understanding the Web Page Layout
Understanding the Web Page LayoutUnderstanding the Web Page Layout
Understanding the Web Page Layout
Jhaun Paul Enriquez
 
Html cia
Html ciaHtml cia
Basics of html for web development by software outsourcing company india
Basics of html for web development   by software outsourcing company indiaBasics of html for web development   by software outsourcing company india
Basics of html for web development by software outsourcing company india
Jignesh Aakoliya
 
Lecture 1
Lecture 1Lecture 1
Lecture 1
Neelum Adil
 
4_5926925443935505826.pptx
4_5926925443935505826.pptx4_5926925443935505826.pptx
4_5926925443935505826.pptx
Lusi39
 
Introductions of the HTML Language .pptx
Introductions of the HTML Language .pptxIntroductions of the HTML Language .pptx
Introductions of the HTML Language .pptx
lahelex741
 
FFW Gabrovo PMG - HTML
FFW Gabrovo PMG - HTMLFFW Gabrovo PMG - HTML
FFW Gabrovo PMG - HTML
Toni Kolev
 
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJSBasic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Deepak Upadhyay
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2
mmvidanes29
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
Stefan Oprea
 
Seo training
Seo trainingSeo training
Seo training
Radu Popescu
 
Web 101 intro to html
Web 101  intro to htmlWeb 101  intro to html
Web 101 intro to html
Hawkman Academy
 

Similar to HTML and CSS Basics for SEO Professional (20)

Html css crash course may 11th, atlanta
Html css crash course may 11th, atlantaHtml css crash course may 11th, atlanta
Html css crash course may 11th, atlanta
 
DESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptx
DESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptxDESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptx
DESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptx
 
Html:css crash course (4:5)
Html:css crash course (4:5)Html:css crash course (4:5)
Html:css crash course (4:5)
 
Lab_Ex1.pptx
Lab_Ex1.pptxLab_Ex1.pptx
Lab_Ex1.pptx
 
The web context
The web contextThe web context
The web context
 
Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)
 
Thinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSThinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSS
 
Basic HTML/CSS
Basic HTML/CSSBasic HTML/CSS
Basic HTML/CSS
 
Understanding the Web Page Layout
Understanding the Web Page LayoutUnderstanding the Web Page Layout
Understanding the Web Page Layout
 
Html cia
Html ciaHtml cia
Html cia
 
Basics of html for web development by software outsourcing company india
Basics of html for web development   by software outsourcing company indiaBasics of html for web development   by software outsourcing company india
Basics of html for web development by software outsourcing company india
 
Lecture 1
Lecture 1Lecture 1
Lecture 1
 
4_5926925443935505826.pptx
4_5926925443935505826.pptx4_5926925443935505826.pptx
4_5926925443935505826.pptx
 
Introductions of the HTML Language .pptx
Introductions of the HTML Language .pptxIntroductions of the HTML Language .pptx
Introductions of the HTML Language .pptx
 
FFW Gabrovo PMG - HTML
FFW Gabrovo PMG - HTMLFFW Gabrovo PMG - HTML
FFW Gabrovo PMG - HTML
 
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJSBasic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
 
Seo training
Seo trainingSeo training
Seo training
 
Web 101 intro to html
Web 101  intro to htmlWeb 101  intro to html
Web 101 intro to html
 

More from Web Trainings Academy

The Rise of AI in Digital Marketing in 2024
The Rise of AI in Digital Marketing in 2024The Rise of AI in Digital Marketing in 2024
The Rise of AI in Digital Marketing in 2024
Web Trainings Academy
 
Is Digital Marketing a Good Career Option?
Is Digital Marketing a Good Career Option?Is Digital Marketing a Good Career Option?
Is Digital Marketing a Good Career Option?
Web Trainings Academy
 
ChatGPT SEO Guide 2023
ChatGPT SEO Guide 2023ChatGPT SEO Guide 2023
ChatGPT SEO Guide 2023
Web Trainings Academy
 
Digital Marketing Latest News - Sep 19th Updates
Digital Marketing Latest News - Sep 19th UpdatesDigital Marketing Latest News - Sep 19th Updates
Digital Marketing Latest News - Sep 19th Updates
Web Trainings Academy
 
How to start Career in Digital Marketing (2021)
How to start Career in Digital Marketing (2021)How to start Career in Digital Marketing (2021)
How to start Career in Digital Marketing (2021)
Web Trainings Academy
 
Pinterest Marketing Strategies 2021
Pinterest Marketing Strategies 2021Pinterest Marketing Strategies 2021
Pinterest Marketing Strategies 2021
Web Trainings Academy
 
Digital Marketing Course Syllabus
Digital Marketing Course SyllabusDigital Marketing Course Syllabus
Digital Marketing Course Syllabus
Web Trainings Academy
 
Digital Marketing Strategy Presentation (PDF)
Digital Marketing Strategy Presentation (PDF) Digital Marketing Strategy Presentation (PDF)
Digital Marketing Strategy Presentation (PDF)
Web Trainings Academy
 
WhatsApp Marketing Strategy Guide PDF
WhatsApp Marketing Strategy Guide PDF WhatsApp Marketing Strategy Guide PDF
WhatsApp Marketing Strategy Guide PDF
Web Trainings Academy
 
Web Designing Course Syllabus PDF 2020
Web Designing Course Syllabus PDF 2020Web Designing Course Syllabus PDF 2020
Web Designing Course Syllabus PDF 2020
Web Trainings Academy
 
Content Writing Course PDF - Content Writing Program
Content Writing Course PDF - Content Writing ProgramContent Writing Course PDF - Content Writing Program
Content Writing Course PDF - Content Writing Program
Web Trainings Academy
 
Quora Marketing Strategies (Presentation PPT)
Quora Marketing Strategies (Presentation PPT)Quora Marketing Strategies (Presentation PPT)
Quora Marketing Strategies (Presentation PPT)
Web Trainings Academy
 
Quora Marketing Strategies for Business Growth - Quora Guide
Quora Marketing Strategies for Business Growth - Quora GuideQuora Marketing Strategies for Business Growth - Quora Guide
Quora Marketing Strategies for Business Growth - Quora Guide
Web Trainings Academy
 
Digital Marketing Career Opportunities - Scope of Internet Marketing
Digital Marketing Career Opportunities - Scope of Internet Marketing Digital Marketing Career Opportunities - Scope of Internet Marketing
Digital Marketing Career Opportunities - Scope of Internet Marketing
Web Trainings Academy
 
Link Building Strategies - Fundamentals of Off Page Optimization
Link Building Strategies  - Fundamentals of Off Page OptimizationLink Building Strategies  - Fundamentals of Off Page Optimization
Link Building Strategies - Fundamentals of Off Page Optimization
Web Trainings Academy
 
PHP Training in Hyderabad
PHP Training in Hyderabad PHP Training in Hyderabad
PHP Training in Hyderabad
Web Trainings Academy
 

More from Web Trainings Academy (17)

The Rise of AI in Digital Marketing in 2024
The Rise of AI in Digital Marketing in 2024The Rise of AI in Digital Marketing in 2024
The Rise of AI in Digital Marketing in 2024
 
Is Digital Marketing a Good Career Option?
Is Digital Marketing a Good Career Option?Is Digital Marketing a Good Career Option?
Is Digital Marketing a Good Career Option?
 
ChatGPT SEO Guide 2023
ChatGPT SEO Guide 2023ChatGPT SEO Guide 2023
ChatGPT SEO Guide 2023
 
Digital Marketing Latest News - Sep 19th Updates
Digital Marketing Latest News - Sep 19th UpdatesDigital Marketing Latest News - Sep 19th Updates
Digital Marketing Latest News - Sep 19th Updates
 
How to start Career in Digital Marketing (2021)
How to start Career in Digital Marketing (2021)How to start Career in Digital Marketing (2021)
How to start Career in Digital Marketing (2021)
 
Pinterest Marketing Strategies 2021
Pinterest Marketing Strategies 2021Pinterest Marketing Strategies 2021
Pinterest Marketing Strategies 2021
 
Digital Marketing Course Syllabus
Digital Marketing Course SyllabusDigital Marketing Course Syllabus
Digital Marketing Course Syllabus
 
Digital Marketing Strategy Presentation (PDF)
Digital Marketing Strategy Presentation (PDF) Digital Marketing Strategy Presentation (PDF)
Digital Marketing Strategy Presentation (PDF)
 
WhatsApp Marketing Strategy Guide PDF
WhatsApp Marketing Strategy Guide PDF WhatsApp Marketing Strategy Guide PDF
WhatsApp Marketing Strategy Guide PDF
 
Web Designing Course Syllabus PDF 2020
Web Designing Course Syllabus PDF 2020Web Designing Course Syllabus PDF 2020
Web Designing Course Syllabus PDF 2020
 
Content Writing Course PDF - Content Writing Program
Content Writing Course PDF - Content Writing ProgramContent Writing Course PDF - Content Writing Program
Content Writing Course PDF - Content Writing Program
 
Quora Marketing Strategies (Presentation PPT)
Quora Marketing Strategies (Presentation PPT)Quora Marketing Strategies (Presentation PPT)
Quora Marketing Strategies (Presentation PPT)
 
Quora Marketing Strategies for Business Growth - Quora Guide
Quora Marketing Strategies for Business Growth - Quora GuideQuora Marketing Strategies for Business Growth - Quora Guide
Quora Marketing Strategies for Business Growth - Quora Guide
 
Digital Marketing Career Opportunities - Scope of Internet Marketing
Digital Marketing Career Opportunities - Scope of Internet Marketing Digital Marketing Career Opportunities - Scope of Internet Marketing
Digital Marketing Career Opportunities - Scope of Internet Marketing
 
Link Building Strategies - Fundamentals of Off Page Optimization
Link Building Strategies  - Fundamentals of Off Page OptimizationLink Building Strategies  - Fundamentals of Off Page Optimization
Link Building Strategies - Fundamentals of Off Page Optimization
 
PHP Training in Hyderabad
PHP Training in Hyderabad PHP Training in Hyderabad
PHP Training in Hyderabad
 
Web Designing Syllabus
Web Designing SyllabusWeb Designing Syllabus
Web Designing Syllabus
 

Recently uploaded

How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
Gal Baras
 
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdfJAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
Javier Lasa
 
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
laozhuseo02
 
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
3ipehhoa
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
natyesu
 
Internet-Security-Safeguarding-Your-Digital-World (1).pptx
Internet-Security-Safeguarding-Your-Digital-World (1).pptxInternet-Security-Safeguarding-Your-Digital-World (1).pptx
Internet-Security-Safeguarding-Your-Digital-World (1).pptx
VivekSinghShekhawat2
 
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
ufdana
 
Comptia N+ Standard Networking lesson guide
Comptia N+ Standard Networking lesson guideComptia N+ Standard Networking lesson guide
Comptia N+ Standard Networking lesson guide
GTProductions1
 
guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...
Rogerio Filho
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
laozhuseo02
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
JungkooksNonexistent
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Sanjeev Rampal
 
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
keoku
 
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptxBridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Brad Spiegel Macon GA
 
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
3ipehhoa
 
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
JeyaPerumal1
 
This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!
nirahealhty
 
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
3ipehhoa
 
test test test test testtest test testtest test testtest test testtest test ...
test test  test test testtest test testtest test testtest test testtest test ...test test  test test testtest test testtest test testtest test testtest test ...
test test test test testtest test testtest test testtest test testtest test ...
Arif0071
 

Recently uploaded (20)

How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
 
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdfJAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
 
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
 
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
 
Internet-Security-Safeguarding-Your-Digital-World (1).pptx
Internet-Security-Safeguarding-Your-Digital-World (1).pptxInternet-Security-Safeguarding-Your-Digital-World (1).pptx
Internet-Security-Safeguarding-Your-Digital-World (1).pptx
 
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
 
Comptia N+ Standard Networking lesson guide
Comptia N+ Standard Networking lesson guideComptia N+ Standard Networking lesson guide
Comptia N+ Standard Networking lesson guide
 
guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
 
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
 
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptxBridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
 
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
 
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
 
This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!
 
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
 
test test test test testtest test testtest test testtest test testtest test ...
test test  test test testtest test testtest test testtest test testtest test ...test test  test test testtest test testtest test testtest test testtest test ...
test test test test testtest test testtest test testtest test testtest test ...
 

HTML and CSS Basics for SEO Professional

  • 2. • HTML is not a programming language, it is a markup language • HTML consists of set of tags and attributes • HTML is language used to develop any website • Basic understanding of HTML is necessary for SEO What is HTML?
  • 3. – HTML 4.01 [2000] – XHTML 1.1 [2001] – HTML 5.0 [2014 – Recommendation] HTML Editor : – We can use either notepad or notepad++ or Dreamweaver to create html pages. HTML Versions
  • 4. <doctype html> [To define version of html] <html> <head> <title> Welcome to site </title> </head> <body> </body> </html> Structure of HTML
  • 5. Tag and Attributes <p align=“center”> Welcome to Site </p> Start Tag Attribute Content End Tag
  • 6. HTML Tag Elements • Head Elements • Structure Elements • Content Elements • Multimedia Elements • Form Element
  • 7. SEO Related Head Tags • Title Tag • Meta Tags • Canonical Tags • CSS (Important for Optimization) • Java Script (Important for Optimization)
  • 8. • Heading Tags (To define page headings) – <h1> </h1> <h2> </h2> ……. <h6> </h6> • Paragraph : <p> </p> – To display content of the page • Preformatted: <pre> </pre> – To display the content exactly as input format • Span: <span> </span> – To display the inline content block • Breaks : <hr/> and <br/> • Comments : <!-- This is a comment --> Content Tags
  • 9. List Tags • Unordered List <ul> <li>Home</li> <li>About Us</li> <li>Clients</li> </ul> • Ordered List <ol> <li>Home</li> <li>About Us</li> <li>Client</li> </ol> • Home • About Us • Clients 1. Home 2. About Us 3. Clients
  • 10. Nested Lists • Unordered List <ul> <li>Home</li> <li>About Us <ul> <li>Vision </li></ul> </li> <li>Clients</li> </ul> • Ordered List <ol> <li>Home</li> <li>About Us <ol> <li>Vision </li> </ol> </li> <li>Client</li> </ol> • Home • About Us • Vision • Clients 1. Home 2. About Us 1. Vision 3. Clients
  • 11. • Links are used to create relation between pages or external site Anchor Links <a href=“page.html" target="_blank"> Link </a> <a href=“http://www." target="_blank"> Link </a> External Internal <a href=“mailto:" target="_blank"> Link </a> Mail Link
  • 12.  Image Tag – To Display Images  Flash Tag - To Display Flash Animation Graphic Tags <img src=“image path” alt=“some text” width=“200” height=“200” border=“1”> <object …> <embed> </embed> </object>
  • 13. • To retrieve content from the other sources • Using IFRAME in practical purpose – Facebook Like Box – Google Maps – Youtube Video • Generally not recommended for SEO Purpose iFrame <iframe src=“ ” width=“ ” height=“ ” frameborder=“ 0”> </iframe>
  • 14. CSS Concepts • Cascading Style Sheet is used to define the page design – It controls how the elements are displayed – What are the dimensions of elements – What are the colors of the elements – CSS helps in developing Responsive Design
  • 15. CSS Tags • Internal CSS – <style> …. </style> - This is called as internal css and must be avoided in website • External CSS – <link rel=“stylesheet” href=“style.css” /> – To include the CSS from external page
  • 16. CSS in SEO Point of View • Use CSS to design a responsive website. • Optimize the CSS to load the site faster. • Use a single CSS file rather than using multiple CSS files, which decrease the requests. • Avoid using the hidden elements with CSS
  • 17. Java Script Basics • JS is scripting language to implement features like sliders, validations and other useful concepts in webpage • Internal JS – <script> </script> • External JS – <script src=“file.js”> </script>
  • 18. Java Script in SEO Point View • Crawler can render basic Java Script. • Crawler cannot render complex java script • Provide the crucial content in HTML format • Avoid using external Ajax Content to load content in page • Avoid Javascript Drop Down menus