Web design & ๐Ÿ˜ƒ development
29.3K subscribers
797 photos
35 videos
89 files
830 links
Admin๐Ÿ‘ฎ @sreetamo @Tranjar

Get free resources for webdevelopment , html , CSS , JavaScript , reactjs , wordpress , Php , nodejs ...etc. Buy ads: https://telega.io/c/WebsiteDesignLearningGroup
๐Ÿ‘ฅGroup๐Ÿ‘ฅ @website_DesignLearning_Group
Download Telegram
By default hyperlinks are displayed with underline from all hyperlinks by using CSS code?
Anonymous Quiz
9%
a { text : no- underline; }
7%
a { text-decoration: no; }
15%
a { text-decoration : no- underline; }
68%
a { text-decoration: none; }
In css, it is not possible to specify different padding for different sides,
Anonymous Quiz
40%
True
60%
False
Which of the following is not a valid CSS selector
Anonymous Quiz
16%
Id
37%
Tag
27%
Title
20%
Head
How do you select all p elements inside a div element?
Anonymous Quiz
31%
div . P
19%
div + p
50%
div p
How do you make each word in a text start with a capital letter?
Anonymous Quiz
11%
You can't
19%
transform: capitalize
70%
text-transform: capitalize
What is the value of 1 vmax if viewport is 1000px wide and 800px high
Anonymous Quiz
26%
80px
19%
10px
21%
8px
34%
100px
Initial value for background-attachment CSS property
Anonymous Quiz
40%
inherit
5%
Local
18%
Scroll
37%
Fixed
Which CSS property is not animatable?
Anonymous Quiz
34%
Display
24%
Font size
18%
Width
23%
Opacity
Which one is valid for box-sizing CSS property
Anonymous Quiz
52%
Content - box
29%
Display - box
19%
inline - box
Thought you might enjoy this course on @Udemy: Complete Responsive Web Development: 4 courses in 1
https://www.udemy.com/share/101qEMAEIcc11RRn8B/
Coupon ๐Ÿ‘‰WEB4IN1NOV2020
๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ
!!!!!! Coupon expires in 10hr !!!!!!
Predict the output of the following JavaScript code.

<script type="text/javascript"> a = 8 + "8"; document.write(a); </script>
Anonymous Quiz
25%
16
21%
Compilation Error
44%
88
9%
Run Time Error
Predict the output of the following JavaScript code.

<script type="text/javascript" language="javascript">    var x=5; var y=6; var res=eval("x*y"); document.write(res);    </script>
Anonymous Quiz
29%
โ€œ30โ€
29%
30
25%
 5*6
18%
โ€œ5*6โ€
The external JavaScript file must contain <script> tag. True or False?
Anonymous Quiz
55%
True
45%
False
How can you detect the client's browser name?
Anonymous Quiz
34%
client.navName
19%
navigator.appName  
const result = Number("") + 1;
Anonymous Quiz
40%
1
26%
NAN
25%
Undefined
9%
0
const result = true > false;
Anonymous Quiz
58%
True
15%
False
25%
Null
2%
Number
๐Ÿ‘1
const result = Number.isInteger(95.0);
Anonymous Quiz
59%
True
41%
False