Digital Code Hub
177 subscribers
24 photos
9 videos
21 files
47 links
Welcome to Digital Code Hub, your ultimate destination for learning coding languages! Whether you're a beginner looking to take your first steps into the world of programming or an experienced developer seeking to expand your skill set.
Download Telegram
Which type of HTML styling uses the "style" as an
attribute on the HTML element itself?
Anonymous Quiz
58%
A) Inline
18%
B) Internal
12%
C) External
9%
D) Inline and Internal
3%
E) You cannot apply a style attribute to an HTML element
Which of the following will create a hyperlink to the digitalcodehub website?
Anonymous Quiz
12%
B) <link src="https://www.digitalcodehub.codes/">Digitalcodehub</link>
58%
C) <a href="https://www.digitalcodehub.codes/">Digitalcodehub</a>
8%
D) <a src="https://www.digitalcodehub.codes/">Digitalcodehub</a>
Which attribute will <img> tags display if the image
cannot be loaded?
Anonymous Quiz
33%
A) src
15%
B) href
48%
C) alt
0%
D) text
3%
E) title
Which tag will create a list which displays numbers
next to each item by default?
Anonymous Quiz
10%
A) <ul>
40%
B) <ol>
33%
C) <li>
13%
D) <table>
3%
E) <dt>
<div></div>
<p>This is a paragraph</p>
Which is the correct way to add multiple classes to an HTML element?
Anonymous Quiz
33%
<div class="one" class="two"></div>
14%
<div class="one,two"></div>
42%
<div class="one two"></div>
11%
<div class="[one,two]"></div>