reading-notes

Duckett HTML

Introduction

Extra Markup

Tag description
< !DOCTYPE HTML > as we mentioned before for HTML5 coding
< !– comment – > for comment it will not appear in web page it’s for coding just
< character id=”text” > the bold italic sentence for giving for tag an id and call it when need that by hash tag sign (#)
< character class=”text” > the bold italic sentence for giving for tag a class and call it when need that by dote sign (.)
< div > for group of elements in a block
< span > for group of element in a inline
< iframe > to open another website in same website that you make
Element discription
< header > element represents a container for introductory content or a set of navigational links
< footer > element defines a footer for a document or section
< nav > element defines a set of navigation links
< article > element specifies independent, self-contained content
< aside > element defines some content aside from the content it is placed in (like a sidebar)
< section > element defines a section in a document
< figure >/ < figcaption > < figure > tag specifies self-contained content, like illustrations, diagrams, photos, code listings, etc <figcaption> and element can be placed as the first or as the last child of a < figure > element
< div > tag defines a division or a section in an HTML document
< hgroup > element represents a multi-level heading for a section of a document

Process & Design

Duckett JavaScript

Introduction