View on GitHub

reading-note

Read: 02 - HTML Text, CSS Introduction, and Basic JavaScript Instructions

HTML

Chapter 1 Text HTML

what is mean html ?

html stands for hyper text markup language

### When creating a web page, you add tags (known as markup) to the contents of the page. These tags provide extra meaning and allow browsers to show users the appropriate structure for the page.

## HEADINGS ### HTML has six levels of headings

h1

## PARAGRAPHS

to create a paragraphs, surround the words with the p element with openning tag <p> and closing tag </p> By default, a browser will show each paragraph on a new line

P

BOLOD & ITALIC

BOLOD By enclosing words in the tags and we can make characters appear bold. ITALIC By enclosing words in the tags and we can make characters appear italic.

there is some tags you can use it :

tag

Chapter 10 Introducing CSS

what is Css?

Cascading Style Sheets, fondly referred to as CSS, is a simply designed language intended to simplify the process of making web pages presentable. CSS allows you to apply styles to web pages. More importantly, CSS enables you to do this independent of the HTML that makes up each web page. CSS is easy to learn and understood but it provides powerful control over the presentation of an HTML document.

How we CAN write CSS??

we can use CSS with HTML in three ways :

See this example :

CSS

Why we using CSS ?

csss

Chapter 2 Basic JavaScript Instructions

What Is The Javascript ?

JavaScript is the Programming Language for the Web. JavaScript can update and change both HTML and CSS. JavaScript can calculate, manipulate and validate data.

where we can write js?

js

WHAT IS A VARIABLE?

A script will have to temporarily store the bits of information it needs to do its job. It can store this data in variables.

# example: exp

## WHAT IS THE RULES FOR NAMING VARIABLES?

VAR

DATA TYPES

there is the data type i JS :

data

WHAT IS Decisions IN JAVASCRIPT ?

loops

loops check a condition, if it’s true, a code block will run, then the condition will be checked again and if it’s still true, the code block will run again and again until the condition is false.

4LOOP

FOR LOOP VS WHILE LOOP

LOOP

Some questions to refresh your mind :

Q1 :what is mean html ?

Q2 :How we CAN write CSS??

Q3 :What Is The Javascript ?

Q4 :how we can write the IF ..ELES statment ?