1 / 47

The Undefined

The Undefined. What is HyperText Markup Language?. Some history. <body bgcolor =“ Gray "> <div border =“ 2 " bordercolor =“ yellow "> <p> < font face =" verdana " color =“ white ">Divide et impera </ font > </p> </div> </body>.

Download Presentation

The Undefined

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. The Undefined

  2. What is HyperText Markup Language?

  3. Some history

  4. <body bgcolor=“Gray"> <div border=“2" bordercolor=“yellow"> <p> <fontface="verdana" color=“white">Divide et impera</font> </p> </div> </body>

  5. <body style="background-color:Gray"> <div style="border:2px yellow"> <p style="font-family:verdana; color:white">Divide et impera</p> </div> </body>

  6. <head> <style type="text/css"> body { background-color:Gray; }   div { border:2px yellow; } p { font-family:verdana; color:white; }     </style> </head> <body> <div> <p>Divide et impera</p> </div> </body>

  7. <link href="styles.css" type="text/css" rel="stylesheet" media="screen" /> index.html <head> <link type="text/css“ media="screen" rel="stylesheet" href="styles.css" /> </head> <body> <div> <p>Divide et impera</p>     </div> </body> styles.css body { background-color:Gray; }   div { border:2px yellow; } p { font-family:verdana; color:white; }

  8. CSS Media Types media=“screen and (max-device-width: 480px)" media=“screen and (orientation:portrait)"

  9. screen.css HTML handheld.css print.css

  10. Wikipedia

  11. Wikipedia – print view

  12. http://csszengarden.com/

  13. http://www.csszengarden.com/

  14. Real world

  15. Red

  16. Colorblind http://www.colorhexa.com/ff0000 http://designshack.net/articles/accessibility/tips-for-designing-for-colorblind-users/

  17. <h2 class=“red">Main article</h2> <p class="green">Article summary</p> Use proper class names <h2 class="title">Main article</h2> <p class="summary">Article summary</p>

  18. Language

  19. Semantic markup

  20. Rich snippets Microformats RDFa (Resource Description Framework in attributes) Microdata

  21. Microformats Text Кафе Ромашка г. Солнечный, просп. Романтиков, д. 21 Телефон: +7 (890) 123-45-67 Мы работаем ежедневно с 11:00 до 24:00 HTML

  22. Microformats Yandex Yandex Maps

  23. Microdata

  24. http://schema.org/

  25. Screen

  26. Real content (TODO)

More Related