Derived Channel
1.54K subscribers
252 photos
4 videos
374 files
68 links
القناة الأساسية
@stepbystep001

ومـما زادني شـرفـاً وتـيــهـاً
وكدت بأخمصي أطأ الـثريا
دخولي تحت قولك يا عبادي
وأن صـيَّرت أحمد لي نـبيـا
Download Telegram
is vector based and composed of shapes
Anonymous Quiz
13%
canvas
87%
SVG
تم تحويل جميع أسئلة (web lecture 2 )ولله الحمد.
بسم الله والصلاة والسلام على رسول الله ﷺ.
Web Lecture 3
HTML comments are not displayed in the browser, but they can help document your HTML source code
Anonymous Quiz
93%
T
7%
F
<!--your comment --> This is a valid comment in HTML
Anonymous Quiz
94%
T
6%
F
// Your comment This is a valid comment in HTML
Anonymous Quiz
12%
T
88%
F
/* Your comment */ This is a valid comment in HTML
Anonymous Quiz
21%
T
79%
F
# Your comment This is a valid comment in HTML
Anonymous Quiz
11%
T
89%
F
<--your comment --> This is a valid comment in HTML
Anonymous Quiz
20%
T
80%
F
You can also hide more than one line, everything between the will be hidden from the display
Anonymous Quiz
96%
T
4%
F
HTML colors are specified with predefined color names, or with RGB, HEX, HSL, RGBA, or HSLA values
Anonymous Quiz
96%
T
4%
F
Each parameter (red, green, and blue) defines the intensity of the color with a value between 0 and 255
Anonymous Quiz
99%
T
1%
F
black color is represented in RGB by
Anonymous Quiz
22%
(255, 255, 255)
78%
(0, 0, 0)
white color is represented in RGB by
Anonymous Quiz
95%
(255, 255, 255)
5%
(0, 0, 0)
red color is represented in RGB by
Anonymous Quiz
92%
(255, 0, 0)
5%
(0, 255, 0)
4%
(0, 0, 255)
green color is represented in RGB by
Anonymous Quiz
1%
(255, 0, 0)
96%
(0, 255, 0)
3%
(0, 0, 255)
blue color is represented in RGB by
Anonymous Quiz
2%
(255, 0, 0)
1%
(0, 255, 0)
97%
(0, 0, 255)
In HTML, a color can be specified using a hexadecimal value in the form: #rrggbb
Anonymous Quiz
92%
T
8%
F
Where rr (red), gg (green) and bb (blue) are hexadecimal values between 00 and ff (same as decimal 0-255)
Anonymous Quiz
91%
T
9%
F
To display white, set all color parameters to 00, like this: #000000
Anonymous Quiz
28%
T
72%
F