HTMLANDITS
FUTURECreated by /Alex Bondarev @skip405
REASONS
1. There are other tags than <div>and <table>
2. Backend devs are unlikely to know what is going on in the
world of front-end.
WHATISHTML
HTML is HyperText Markup Language
SEMANTICS
suggests using the HTML markup to reinforce the meaning,
of the information in webpages rather than merely to define
its presentation or look
Each tag should be used to markup the
pieces of text it was designed for
<p>, <a>, <h1>, <blockquote>, <img>
SEMANTICSEXAMPLE
Let's take a look at one of the previous slides to better
understand the semantic usage of HTML tags
<section>
<h2>WhatisHTML</h2>
<p><dfn><abbr>HTML</abbr></dfn>is<b>H</b>yper<b>T</b>ext<b>M</b>arkup<b>L</b>angu
</section>
HTML5
introduces the whole new level of semantics (which is
sometimes a bit harder to grasp)
new tags like <details>, <figure>, <section>, <main>,
etc.
DOM
or Document Object Model, is an API that allows programs
and scripts to access the content of HTML documents.
SHADOWDOM
Method of establishing and maintaining functional
boundaries between DOM trees and how these trees
interact with each other within a document, thus enabling
better functional encapsulation within the DOM.
<google-maplatitude="37.779"longitude="-122.3892"minZoom="9"maxZoom="11"fit></google
WEBCOMPONENTS!!!
THEPOWEROFWEB
COMPONENTS
THANKSFORLISTENING
It's high time to create our first web component

Html and its future