تنسيقات css

تنسيقات css

10th Grade

6 Qs

quiz-placeholder

Similar activities

Tin học cơ sở

Tin học cơ sở

1st Grade - University

10 Qs

Computer Literacy Unit 3

Computer Literacy Unit 3

9th - 12th Grade

10 Qs

HTML I CSS

HTML I CSS

1st - 12th Grade

10 Qs

FORMATTING IN MS WORD

FORMATTING IN MS WORD

2nd - 10th Grade

10 Qs

MOAC Word 2016 Lesson 3

MOAC Word 2016 Lesson 3

8th - 12th Grade

10 Qs

HTML/CSS

HTML/CSS

1st Grade - University

10 Qs

Google Doc Icons

Google Doc Icons

3rd - 12th Grade

10 Qs

Video Quiz - Introduction to CSS

Video Quiz - Introduction to CSS

9th - 12th Grade

10 Qs

تنسيقات css

تنسيقات css

Assessment

Quiz

Computers

10th Grade

Hard

Created by

Hessa Adnan

Used 8+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

<link> اكملي الخاصية الناقصة في جملة الربط

Mypage.html لربط ملف

Mystyle.css بملف التنسيق


<link rel="stylesheet" type="text/CSS" href="-----------------" />

href = "Mystyle.css"

a href = "Mystyle.css"

href = "Mypage.html"

href : Mystyle.css

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

نسقي العنوان من المستوى الأول بحيث يصبح نمط الخط

(font-weight) = سميك bold

h1 { font-weight : bold; }

h1 { font-weight = bold; }

h2 { font-weight : bold; }

font-weight : bold;

3.

FILL IN THE BLANK QUESTION

2 mins • 1 pt

نسقي الفقرة ليصبح لون الخط

(color) = أزرق blue

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

نسقي الصورة ليصبح طولة وعرضها بقيمة 100

(height) = (width) = 100px

img {

height : 100px;

width : 100px; }

img {

height = 100px;

width = 100px; }

img { height : width : 100px; }

img { height = width = 100px; }

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

نسقي الارتباط التشعبي ليصبح نوع الخط

(font-family) = Tahoma

عند زيارة الصفحة

a: visited { font-family : Tahoma; }

a: hover { font-family : Tahoma;}

a { font-family : Tahoma; }

a visited { font-family : Tahoma; }

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

نسقي بيانات الجدول ليصبح لون الخلفية أصفر

(background-color) = yellow

عند مرور مؤشر الفأرة

td: hover { background-color : yellow; }

tr: hover { background-color : yellow; }

td: visited { background-color : yellow; }

tr: visited { background-color : yellow; }