SlideShare una empresa de Scribd logo
1 de 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

Más contenido relacionado

La actualidad más candente

La actualidad más candente (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
 

Destacado

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
 

Destacado (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 a 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
 

Último

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 

Último (20)

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 

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