SlideShare a Scribd company logo
1 of 16
Web Design & SEO Welcome to  The Web Design & SEO  Workshop!
Web Design & SEO ~ Topics HTML CSS Resources
1.HTML HTML = text format that web browsers ‘understand’. Basic concept: head and body: <html> <head><title>My Website</title></head> <body>Hello World</body> </html>
1.HTML Result in Browser:
1.HTML ~elements Some of the HTML elements are: <p> Paragraph</p> <a href=‘http://google.com’>Link</a> <div>Div(or box)</div> <imgsrc=“pic1.jpg” /> Unordered list: <ul>    <li>list item</li>   <li>list item</li> </ul> Headings: <h1>Heading</h1> <h2>Heading</h2> <h3>Heading</h3>
1.HTML Here’s an example of an HTML document with some of those elements: Demo.html <html> <head> <title>My Webpage</title> </head> <body> <h1>Hello World</h1> <p>this is a paragraph</p> <a href=‘http://google.com’>link to Google</a> </body> </html>
1.HTML Browser view of demo.html file:
2. CSS CSS = cascading style sheets. CSS code is used to style HTML Example of CSS applied to a paragraph: <style> p { font-size: 50px; color: red; } </style> <p>This is a paragraph</p> Result: This is a paragraph
2. CSS This is what an HTML with CSS document can look like: Demo.html <html> <head> <title>My Webpage</title> <style>      p { font-size: 50px; color: red; } </style> </head> <body> <p>This is a paragraph</p> </body> </html>
2. CSS Browser view of demo.html file:
2. CSS Creating a layout using <div> tags. A web page layout is all about boxes. For example, A typical web page layout looks something like this: Header Main Content Sidebar Footer
2. CSS Creating a single box in HTML using a <div>: <div> This is a div </div> If you add a unique name (id) to the <div>, then you can control its properties using CSS (height, width, background color, etc.): <div id=‘mydiv’>This is a div </div>
2. CSS Adding a CSS rule to the div: <style> #mydiv { width:300px; height: 200px; background: green; } </style> <div id=‘mydiv’> This is a div </div>
2. CSS The whole HTML document view: Demo.html <html> <head> <title>My Webpage</title> <style> #mydiv { width:300px; height: 200px; background: green;} </style> </head> <body>         <div id=‘mydiv’> This is a div </div> </body> </html>
2. CSS Browser view of demo.html file:
3. Resources A very useful try-it-yourself website: http://www.w3schools.com/css/css_examples.asp Try one of these today: http://www.w3schools.com/css/tryit.asp?filename=trycss_default

More Related Content

What's hot

What's hot (20)

YL html
YL htmlYL html
YL html
 
ARTDM 171 Week 4: Tags
ARTDM 171 Week 4: TagsARTDM 171 Week 4: Tags
ARTDM 171 Week 4: Tags
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
 
Html2 Intro
Html2 IntroHtml2 Intro
Html2 Intro
 
3 first code_in_html
3 first code_in_html3 first code_in_html
3 first code_in_html
 
New HTML5/CSS3 techniques
New HTML5/CSS3 techniquesNew HTML5/CSS3 techniques
New HTML5/CSS3 techniques
 
4 html tags
4 html tags4 html tags
4 html tags
 
CSS in HTML
CSS in HTMLCSS in HTML
CSS in HTML
 
Intro to HTML
Intro to HTMLIntro to HTML
Intro to HTML
 
Cheat codes
Cheat codesCheat codes
Cheat codes
 
Web Fundamentals And Html Chapter 1
Web Fundamentals And Html Chapter 1Web Fundamentals And Html Chapter 1
Web Fundamentals And Html Chapter 1
 
Heading Section in HTML - R.D.Sivakumar
Heading Section in HTML - R.D.SivakumarHeading Section in HTML - R.D.Sivakumar
Heading Section in HTML - R.D.Sivakumar
 
How an html file is structured
How an html file is structuredHow an html file is structured
How an html file is structured
 
Week3 css
Week3 cssWeek3 css
Week3 css
 
Lesson1 Intro to HTML
Lesson1 Intro to HTMLLesson1 Intro to HTML
Lesson1 Intro to HTML
 
HTML_Day_Two(W3Schools)
HTML_Day_Two(W3Schools)HTML_Day_Two(W3Schools)
HTML_Day_Two(W3Schools)
 
Print CSS
Print CSSPrint CSS
Print CSS
 
HTML & Textile Training
HTML & Textile TrainingHTML & Textile Training
HTML & Textile Training
 
Html Power Point 1
Html Power Point 1Html Power Point 1
Html Power Point 1
 
The html tag
The html tagThe html tag
The html tag
 

Viewers also liked

The Future of Meetings in Hospitality
The Future of Meetings in HospitalityThe Future of Meetings in Hospitality
The Future of Meetings in HospitalityGreg Oates
 
Social Media Basics May 2010
Social Media Basics May 2010Social Media Basics May 2010
Social Media Basics May 2010Johan Hedberg
 
PCMA CL 2015: 5 Key Strategies for Forward Thinking Event Profs
PCMA CL 2015: 5 Key Strategies for Forward Thinking Event ProfsPCMA CL 2015: 5 Key Strategies for Forward Thinking Event Profs
PCMA CL 2015: 5 Key Strategies for Forward Thinking Event ProfsGreg Oates
 

Viewers also liked (6)

The Future of Meetings in Hospitality
The Future of Meetings in HospitalityThe Future of Meetings in Hospitality
The Future of Meetings in Hospitality
 
Social Media Basics May 2010
Social Media Basics May 2010Social Media Basics May 2010
Social Media Basics May 2010
 
Estatsunits
EstatsunitsEstatsunits
Estatsunits
 
Se325
Se325Se325
Se325
 
She ent blogging
She ent bloggingShe ent blogging
She ent blogging
 
PCMA CL 2015: 5 Key Strategies for Forward Thinking Event Profs
PCMA CL 2015: 5 Key Strategies for Forward Thinking Event ProfsPCMA CL 2015: 5 Key Strategies for Forward Thinking Event Profs
PCMA CL 2015: 5 Key Strategies for Forward Thinking Event Profs
 

Similar to Webdesign (20)

How To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My WebHow To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My Web
 
Webpages And Dynamic Content
Webpages And Dynamic ContentWebpages And Dynamic Content
Webpages And Dynamic Content
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Html Intro2
Html Intro2Html Intro2
Html Intro2
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
 
introduction to web technology
introduction to web technologyintroduction to web technology
introduction to web technology
 
Css
CssCss
Css
 
YL Intro html
YL Intro htmlYL Intro html
YL Intro html
 
HTML 101
HTML 101HTML 101
HTML 101
 
CSS
CSSCSS
CSS
 
Block2 Session2 Presentation
Block2 Session2 PresentationBlock2 Session2 Presentation
Block2 Session2 Presentation
 
HTML and CSS workshop
HTML and CSS workshopHTML and CSS workshop
HTML and CSS workshop
 
Html Lesson01
Html Lesson01Html Lesson01
Html Lesson01
 
Xhtml Part1
Xhtml Part1Xhtml Part1
Xhtml Part1
 
HTML guide for beginners
HTML guide for beginnersHTML guide for beginners
HTML guide for beginners
 
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
 
HTML + CSS
HTML + CSSHTML + CSS
HTML + CSS
 
Web design 2 - Basic HTML 2010
Web design 2 - Basic HTML 2010Web design 2 - Basic HTML 2010
Web design 2 - Basic HTML 2010
 
1 03 - CSS Introduction
1 03 - CSS Introduction1 03 - CSS Introduction
1 03 - CSS Introduction
 

Recently uploaded

Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...FIDO Alliance
 
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...ScyllaDB
 
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdfMuhammad Subhan
 
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...FIDO Alliance
 
AI mind or machine power point presentation
AI mind or machine power point presentationAI mind or machine power point presentation
AI mind or machine power point presentationyogeshlabana357357
 
WebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM PerformanceWebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM PerformanceSamy Fodil
 
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsLeah Henrickson
 
Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024Hiroshi SHIBATA
 
Event-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingEvent-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingScyllaDB
 
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...FIDO Alliance
 
Design Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxDesign Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxFIDO Alliance
 
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)Paige Cruz
 
2024 May Patch Tuesday
2024 May Patch Tuesday2024 May Patch Tuesday
2024 May Patch TuesdayIvanti
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxFIDO Alliance
 
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdfHow Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdfFIDO Alliance
 
Working together SRE & Platform Engineering
Working together SRE & Platform EngineeringWorking together SRE & Platform Engineering
Working together SRE & Platform EngineeringMarcus Vechiato
 
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...panagenda
 
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider  Progress from Awareness to Implementation.pptxTales from a Passkey Provider  Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider Progress from Awareness to Implementation.pptxFIDO Alliance
 
Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...
Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...
Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...ScyllaDB
 
Vector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptxVector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptxjbellis
 

Recently uploaded (20)

Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
 
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
 
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
 
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
 
AI mind or machine power point presentation
AI mind or machine power point presentationAI mind or machine power point presentation
AI mind or machine power point presentation
 
WebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM PerformanceWebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM Performance
 
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
 
Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024
 
Event-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingEvent-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream Processing
 
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
 
Design Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxDesign Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptx
 
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
 
2024 May Patch Tuesday
2024 May Patch Tuesday2024 May Patch Tuesday
2024 May Patch Tuesday
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
 
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdfHow Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
 
Working together SRE & Platform Engineering
Working together SRE & Platform EngineeringWorking together SRE & Platform Engineering
Working together SRE & Platform Engineering
 
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
 
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider  Progress from Awareness to Implementation.pptxTales from a Passkey Provider  Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
 
Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...
Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...
Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...
 
Vector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptxVector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptx
 

Webdesign

  • 1. Web Design & SEO Welcome to The Web Design & SEO Workshop!
  • 2. Web Design & SEO ~ Topics HTML CSS Resources
  • 3. 1.HTML HTML = text format that web browsers ‘understand’. Basic concept: head and body: <html> <head><title>My Website</title></head> <body>Hello World</body> </html>
  • 4. 1.HTML Result in Browser:
  • 5. 1.HTML ~elements Some of the HTML elements are: <p> Paragraph</p> <a href=‘http://google.com’>Link</a> <div>Div(or box)</div> <imgsrc=“pic1.jpg” /> Unordered list: <ul> <li>list item</li> <li>list item</li> </ul> Headings: <h1>Heading</h1> <h2>Heading</h2> <h3>Heading</h3>
  • 6. 1.HTML Here’s an example of an HTML document with some of those elements: Demo.html <html> <head> <title>My Webpage</title> </head> <body> <h1>Hello World</h1> <p>this is a paragraph</p> <a href=‘http://google.com’>link to Google</a> </body> </html>
  • 7. 1.HTML Browser view of demo.html file:
  • 8. 2. CSS CSS = cascading style sheets. CSS code is used to style HTML Example of CSS applied to a paragraph: <style> p { font-size: 50px; color: red; } </style> <p>This is a paragraph</p> Result: This is a paragraph
  • 9. 2. CSS This is what an HTML with CSS document can look like: Demo.html <html> <head> <title>My Webpage</title> <style> p { font-size: 50px; color: red; } </style> </head> <body> <p>This is a paragraph</p> </body> </html>
  • 10. 2. CSS Browser view of demo.html file:
  • 11. 2. CSS Creating a layout using <div> tags. A web page layout is all about boxes. For example, A typical web page layout looks something like this: Header Main Content Sidebar Footer
  • 12. 2. CSS Creating a single box in HTML using a <div>: <div> This is a div </div> If you add a unique name (id) to the <div>, then you can control its properties using CSS (height, width, background color, etc.): <div id=‘mydiv’>This is a div </div>
  • 13. 2. CSS Adding a CSS rule to the div: <style> #mydiv { width:300px; height: 200px; background: green; } </style> <div id=‘mydiv’> This is a div </div>
  • 14. 2. CSS The whole HTML document view: Demo.html <html> <head> <title>My Webpage</title> <style> #mydiv { width:300px; height: 200px; background: green;} </style> </head> <body> <div id=‘mydiv’> This is a div </div> </body> </html>
  • 15. 2. CSS Browser view of demo.html file:
  • 16. 3. Resources A very useful try-it-yourself website: http://www.w3schools.com/css/css_examples.asp Try one of these today: http://www.w3schools.com/css/tryit.asp?filename=trycss_default