Introductory HTML and JavaScript

HTML Book

Introduction

How People Access the Web :


HTML Chapter 1 (Structure) ::


HTML Chapter 8 (Extra Markup) ::

  1. <! DOCTYPE ......> to tell a browser which version of HTML the page is using.
  2. <!-- --> make a comment are not visible to users in the main browser window in HTML <!-- comment goes here -->.
  3. id attribute used to uniquely identify that element from other elements on the page. Its value should start with a letter or an underscore (not a number or any other character).
  4. class attribute identify several element as being different from the other elements on the page.
  5. BLOCK ELEMENT start on a new line in the browser window (<p>, <h1>).
  6. INLINE ELEMENT appear to continue on the same line as their neighbouring elements(<span> , <a>).
  7. <span> element acts like an inline equivalent of the <div> element. It is used to either:Contain a section of text where there is no other suitable element to differentiate it from its surrounding text , Contain a number of inline elements The most common reason why people use <span> elements is so that they can control the appearance of the content of these elements using CSS.
  8. <iframe> common use to embed a Google Map into a page. src The src attribute specifies the URL of the page to show in the frame. height The height attribute specifies the height of the iframe in pixels. width The width attribute specifies the width of the iframe in pixels.scrollingindicates whether the iframe should have scrollbars or not ,frameborder indicates whether the frame should have a border or not. seamlesswhere crollbars are not desired.

  9. special symbols
  10. special symbols

HTML Chapter 17 (HTML5 Layout) ::

HTML5 Layout


HTML Chapter 18 (Process & Design) ::

WireFrames




JavaScript Book

Introduction :

why we use JAvaScript :

Chapter 1 (The ABC of Programming) ::

WRITING A SCRIPT :

What happens when you entered your name inside input feild and press to btn (ok)?

  1. The script is triggered when the button is clicked.
  2. It collects the name entered into the form field.
  3. It checks that the user has entered a value.
  4. If the user has not entered anything, a message will appear telling them to enter a name.

Expressions & Operators:

Expressions :

Operators :

Functions :

GitHub Profile