Coding Tags
More Coding Tags
code!
random coding related questions
riddles
100

What does this code <p> do?

makes text appear on different lines

100

What code do you use to make a numbered list?

<ol> </ol>

100

Write the code for each sentence to appear on a separate line:

My name is Potato. I love computer science. I am the best at coding.

<p> My name is potato. </p>

<p> I love computer science. </p>

<p> I am the best at coding. </p>

100

What website do we use in class?

100

What month has the most birthdays in THIS class?

November

200

What does this tag identify </>

Closing tag

200

What are all the tags for the headings (big and bold text)

<h1>

<h2>

<h3>

<h4>

<h5>

<h6>

200

What is wrong with this code? (3 problems)

</p> My favorite color is green. <p/>

<p> I have 2 cats

The first tag should just be <p>

The closing tag should be </p>

The second line doesn't have </p> at the end

200

What unit are we working on currently?

Unit 2: Web Development

200

I have a body, arms, legs and a head, but I'm heartless and have no guts. What am I?

a skeleton

300

What code goes around list items

<li> </li>

300

What is the code for the smallest heading?

<h6> </h6>

300

Write the code to make "LARGEST" appear really big and "smallest" in the smallest heading:

LARGEST

smallest

<h1> LARGEST </h1>

<h6> smallest </h6>

300

When one person writes code, while the other reviews each line of code as it is typed in is called ?

Pair programming

300

I am present, but also past. I am wrapped, but not a gift. I am named after a parent, but have no children. What am I?

a mummy

400

What does this code stand for <ul>

Unordered list

400

What is the difference between <ul> and <ol>?

<ul> just makes bullet points

<ol> makes a numbered list

400

Write the code for this:

1. One

2. Two

3. Three

<ol>

         <li> One </li>

         <li> Two </li>

         <li> Three </li>

</ol>

400

What is the name of the type of code we are doing?

HTML

Hypertext Markup Language

400

I always leave a trace, so you can see where I've been. I have some extra legs and I make people scream. What am I?

a spider

500

All content on a web page must go between what type of starting and closing tags?

Body

500

What code do you use to make a comment?

<!--        -->

500

What is missing from this code to make a bulleted (unordered) list?

<li> What's </li>

<li> wrong </li>

<li> with this </li>

It needs the <ul> and </ul> at the beginning and end

500

A title or summary for a document or section of a document is called a _________?

Heading

500

There are four months with no birthdays in this class; what are they?

May, June, July, August

M
e
n
u