Code Fighters
19.4K subscribers
116 photos
11 videos
61 files
168 links
🎯We add value to your asset!

WELCOME TO OUR TELEGRAM CHANNEL.

YouTube channel 🔗 LINK- https://linktw.in/iWgHMG
Inbox: @Codefighters_support
All link: https://linktr.ee/code_fighters
Website: www.codefightersdigitals.com
Download Telegram
Html
Day 8 : Which of the following HTML attribute is used to define inline styles?
Anonymous Quiz
56%
style
15%
class
4%
type
26%
inline
CSS
Day 8 : Which css property you will use if you want to add some margin between a DIV's border and its inner text ?
Anonymous Quiz
5%
spacing
46%
padding
34%
margin
15%
inner-margin
👍3
Html
Day 9 : Which is the correct way to comment out something in HTML?
Anonymous Quiz
13%
Using ## and #
70%
Using <!-- and -->
11%
Using </-- and -/->
7%
Using <- and ->
CSS
Day 9 : How can we write comment along with CSS code ?
Anonymous Quiz
67%
/* a comment */
4%
/ a comment /
17%
// a comment //
11%
<' a comment'>
Html
Day 10 :
HTML web pages can be read and rendered by _________
Anonymous Quiz
9%
Compiler
77%
web browser
11%
Server
4%
interpreter
CSS
Day 10 : which of the following property is used to make a font italic or oblique?
Anonymous Quiz
12%
font-variant
63%
font-style
6%
font-weight
18%
font-family
4
👏4
we have been off for a while sorry for that we are preparing more to help you as much as possible eski tell us in the comment what resources you need or any suggestions.
Thanks in advance
7 Simple Javascript Projects

📌 Share to your friends the one you like the most
1. Vanilla JavaScript stopwatch

Link : https://codepen.io/cathydutton/pen/GBcvo

@code_fighters
4. JavaScript Guess the Color Game

Link : https://codepen.io/itsmhuang/pen/oxaReK

@code_fighters
7. JavaScript browser code editor

Link : https://codepen.io/kazzkiq/pen/xGXaKR

@code_fighters
Javascript
Day 1 : Which type is JavaScript language
Anonymous Quiz
46%
Object-Oriented
34%
High-level
10%
Object-Based
9%
Assembly-language
var grade='D';
var result;
switch(grade)
{
case'A':
result+="10";
case'B':
result+=" 9";
case'C':
result+=" 8";
case 'D'
result+=" 6";
default:
result+=" 0";
}
document.write(result);
1
Day 2 : Which of the following is the correct output for the above JavaScript code:
Anonymous Quiz
6%
10
56%
6
19%
33
19%
0
👍1
Day 3 : Which of the following function of the String object returns the character in the string starting at the specified position via the specified number of characters?
Anonymous Quiz
15%
slice()
17%
split()
49%
substr()
18%
search()
👍1