wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Lecture 02

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

الكود التالي يمكننا عند الضغط على كلمة "اضغط هنا" الذهاب إلى موقع جوجل

a)

<a href="https://google.com"> اضغط هنا <a/>

b)

<a ref="https://google.com"> اضغط هنا </a>

c)

<a href="https://google.com"> اضغط هنا </a>

d)

<a href="https://google.com" اضغط هنا />

2.

لعمل data list نستخدم الأكواد التالية

<dl>

<dd>

</dd>

<dt>

</dt>

</dl>

a)

b)

3.

لربط صفحة

HTML

مع ملف

CSS

نضيف السطر التالي

a)

<head>

<link rel=“stylesheet” href=“styles.css”>

</head>

b)

<style>

<link rel=“stylesheet” href=“styles.css”>

</style>

c)

<header>

<link rel=“stylesheet” href=“styles.css”>

</header>

d)

<style>

<link rel=“stylesheet” href=“styles.css” />

</style>

4.

لفصل الكلام على سطرين نستخدم التاج

<br/>

a)

b)

5.

لعمل قائمة من العناصر غير المرقمة لاستخدامها في قائمة الموقهع الرئيسية نستخدم

a)

<ol></ol>

b)

<ui></ui>

c)

<li></li>

d)

<ul></ul>

6.

الكود المطلوب للانتقال من

index.html

إلى صفحة

about.html

a)

<a href="/about.html">About </a>

b)

<a href="about.html">About </a>

c)

<a href="../about.html">About </a>

d)

<a href="./about.html">About </a>

7.

لاضافة صورة بكود

<img src="logo.png" >

a)

b)

8.

للحصول على الشكل التالي نستخدم الكود

a)

<h1>You have fun. <b>We'll handle the cooking.</b> Black Goose Catering can handle events </h1>

b)

<h1>You have fun. <em>We'll handle the cooking.</em> Black Goose <br>Catering can handle events </h1>

c)

<h1>You have fun. We'll handle the cooking. Black Goose

Catering can handle events </h1>

d)

<h1>You have fun. We'll handle the cooking. Black Goose <br>Catering can handle events </h1>

9.

الشكل العام لملف

html

<!DOCTYPE html />

<html>

<header><title>العنوان</title></header>

<body></body>

</html>

a)

b)

10.

يمكننا تمييز مجموعة من العناصر من خلال

a)

استخدام

ID

في احد الوسوم

b)

استخدام

class

في احد الوسوم

c)

استخدام

ID

في وسم الفتح فقط

d)

استخدام

class

في وسم الفتح فقط