Readings : Basics of HTML, CSS & JS

as we learned before about HTML and its Structure which made by elements called ` Tags` Now We Will Learn More about Tags That are used With Texts

For Example

Let’s Start

Text

We will learn about: Structural markup and Semantic markup

Normal Elements that Used for descripe Content like H1 or P

That Is a special Tags Made For Browsers and Search engine so by using these tags, The Browsers and Search engine can getting the accurate information for users

semantic-fb

Structural markup

Headings and paragraphs Structural markup

Semantic markup

Structural and semantic markup Semantic Markup


<blockquote cite="https://www.tutorialrepublic.com/css-tutorial/">
 <p>CSS is the key presentational technology that is used in website design</p>
</blockquote>

<p>As Ms Hanna said, <q>also has a great mobile app
</q></p>
 <address>
<p><a href="mailto:aghyadalbalkhi@gmail.com">
 aghyadalbalkhi@gmail.com</a></p>
<p>Jordan - AMMAN.</p>
</address>

Semantic

CSS

Css3

Introduction To CSS CSS stands for Cascading Style Sheets and it’s responsible of the page Style And the beautiful designs that we see on the web pages it’s CSS Work

How CSS Work CSS interacts with HTML elements directly and applies the style to them

For Example

If I have this paragraph

<p>Welcome To 201 Course!</p>

and I wanna To make some Style, like color or font effects


p  {  color:pink;  font-weight:bold;  }

Some CSS

JavaScript

Basic JavaScript Instructions

STATEMENTS

A script is a series of instructions that a computer can follow one-by-one

COMMENTS

It’s Used To Expline the Code Writted By Developer

var UserName = promot("enter Your Name"); /// It Take the Name Of User

VARIABLE

It’s where value stored In

VARIABLE

var UserName = promot("enter Your Name"); /// It Take the Name Of User

In a above Example the Variable is UserName which store the name that User Inset in Pormot Window

ARRAY

An array is a data structure where we can store more than one value

ARRAY

var Car;
Car ['BMW', 'Audi', ' Toyota']; 

VALUES IN ARRAYS

Values In Array Access By Index


INDEX    VALUE
0       'BMW '
1       'Audi'
2       'Toyota'

OPERATORS

they allow programmers to create a single value from one or more values

OPERATORS

Decisions Making and Loops

If Statment

if statement is conditional statement that, if it true, then performs it run the block code. if , not its skip it. In Loops, it always checks the condition statement as an entry or stoping loops

If

Example

if (hour < 18) {
  greeting = "Good day";
}

Switch Loop

a switch statement is a type of condition control used to allow the value of a variable to change the control of program

Switch

Example


var day;
switch (new Date().getDay()) {
  case 0:
    day = "Sunday";
    break;
  case 1:
    day = "Monday";
    break;
  case 2:
    day = "Tuesday";
    break;
  case 3:
    day = "Wednesday";
    break;
  case 4:
    day = "Thursday";
    break;
  case 5:
    day = "Friday";
    break;
  case  6:
    day = "Saturday";
}
document.getElementById("demo").innerHTML = "Today is " + day;
</script>

Example From : w3schools

Contact Info :

Please Feel Free To Contact Me When You Need help ^_^