session 2 intro to css

32

Upload: muhammad-hesham

Post on 12-Apr-2017

79 views

Category:

Technology


2 download

TRANSCRIPT

Page 1: Session 2 intro to Css
Page 2: Session 2 intro to Css

Aspiration WEBBERSSession 2 : CSS

Prepared & Presented By: Mustafa Saeed & Muhammad Hesham

WA

Page 3: Session 2 intro to Css

1.Reko Meet CSS2.Reko Start write CSS code3.CSS property 4.Demo

Page 4: Session 2 intro to Css

Cascading Style Sheets

2011

Page 5: Session 2 intro to Css
Page 6: Session 2 intro to Css
Page 7: Session 2 intro to Css
Page 8: Session 2 intro to Css

CSS

selector{

property : value ;

}

Page 9: Session 2 intro to Css

Types of typing CSS Code

Page 10: Session 2 intro to Css

<!DOCTYPE html><html>

<head> <meta charset="UTF-8”> <title>CSS Styles</title> <link /></head>

rel="stylesheet"href="styles.css"

External

Page 11: Session 2 intro to Css

<!DOCTYPE html><html><head> <meta charset="UTF-8”> <title>CSS Styles</title> <link />

</head>

rel="stylesheet"href="styles.css"<style>

</style>

p { color: red ; }

Internal

Page 12: Session 2 intro to Css

<!DOCTYPE html><html><head> <meta charset="UTF-8”> <title>CSS Styles</title></head><body>

</body>

Inline

<p > Hello It’s me </p>

style="color : red ; "

Page 13: Session 2 intro to Css

Strength Of Style

Page 14: Session 2 intro to Css

P { color: green ; }

Strength of External

Page 15: Session 2 intro to Css

<link rel="stylesheet" href="reko.css"/>

Page 16: Session 2 intro to Css

External CSS styleInternal Style

<style>

</style>

p { color: red ; }

Page 17: Session 2 intro to Css

Inline

<p > Hello It’s me </p>

style="color : red ; "

كود ليا انا ابنى يا ريكو يا تانى styleشوف مكان فىموافق , انا موافق انا بس

Page 18: Session 2 intro to Css
Page 19: Session 2 intro to Css

class=“navDiv”.navDiv a.navDiv li

Page 20: Session 2 intro to Css

id=“right-menu”#right-menu

Page 21: Session 2 intro to Css

Background1. Color

2. Image3. Repeat4. Attachment5. Position

Page 22: Session 2 intro to Css

Color

Page 23: Session 2 intro to Css

Image

Page 24: Session 2 intro to Css

Repeat

Page 25: Session 2 intro to Css

Repeat X Repeat Y

Repeat all No Repeat

Page 26: Session 2 intro to Css

Attachment

Page 27: Session 2 intro to Css

Position

ستريت امشى

Page 28: Session 2 intro to Css

Shortcut

Page 29: Session 2 intro to Css

Demo

Page 30: Session 2 intro to Css

Any Questions

Page 31: Session 2 intro to Css