View on GitHub

reading-notes

Web Languages:

HTML

What : HTML is the universal markup language for the Web.

Why: HTML lets you format text, add graphics, create links, input forms, frames and tables, etc., and save it all in a text file that any browser can read and display. It helps you to make the structure of your web page

How: by using tags (there are many sets of tags that are provided on the Html but first let us be familiar with

Tags

CSS

What : Cascading Style Sheets.

Why: It is a language designed to specify the overall appearance of webpages as well as the appearance and structure of the text and elements such as images and buttons on webpages and their layout.

How: There are three ways to add css to the webpages 1. inner 2. extrenal 3. internal

selector{ 

proparity; value;

}

Tags

J.S

What : is a multi-paradigm, dynamic language with types and operators, standard built-in objects, and methods.

Why: to make it lively and to mske it functional

How:by using its syntax * JavaScript syntax is the set of rules, how JavaScript programs are constructed: // How to create variables: var x; let y;

// How to use variables:
x = 5;
y = 6;
let z = x + y;

tags

Maps for creating a webpage:

map

Dictionary for HTML:

  1. <!--...-- The HTML ‘comments’ tag is used for creating comments within your HTML code.
  2. !doctype The HTML !doctype tag is used for specifying which version of HTML the document is using. This is referred to as the document type declaration (DTD).
  3. a The HTML a tag is used for creating a hyperlink to either another document, or somewhere within the current document.

  4. blockquote The HTML blockquote tag is used for indicating long quotations (i.e. quotations that span multiple lines).
  5. body The HTML body tag is used for indicating the main content section of the HTML document. The body tag is placed between the </head> and the </html> tags.
  6. br The HTML br tag is used for specifying a line break.
  7. code The HTML code tag is used for indicating a piece of code. The code tag surrounds the code being marked up.
  8. dl The HTML dl tag is used for declaring a definition list.
  9. dt The HTML dt tag is used for specifying a definition term in a definition list.
  10. h1 The HTML h1 tag is used for specifying level 1 headings. There are 6 levels of headings (h1 - h6) with h1 the most important and h6 the least important.
  11. li The HTML li tag is used for specifying a list item in ordered, unordered, directory, and menu lists.
  12. link The HTML link tag is used for defining a link to an external document. It is placed in in the <head> section of the document.