HTML Tags
Write
Spot!
Name
Visual Studio Code
100

The largest tag.

<h1> </h1>


100

Write a code using the largest heading.

<!DOCTYPE html>

<h1> .... </h1>

100

<IDOCTYPE! html>

<!DOCTYPE html>

100

The inventor of WWW.

Tim Berners Lee.
100

What is the first step in VSC?

Create your own folder.
200

The tag used display content in chunks.

<p>

200

Write a code that includes title, h1, img.

<!DOCTYPE html>

<title> ... </title>

<h1> ... </h1>

<img src="">

200

<a href “https://www.spas.edu.ph/”> SPAS Website </a href>

<a href=“https://www.spas.edu.ph/”> SPAS Website </a>

200
He is the one who developed Java.

James Gosling

200

What do you need to do to create a new code?

Add new file.

300

The tag used to invisible line. 

<hr>
300

Write a code that includes h2, h3, br, link

<!DOCTYPE html>

<h2> ... </h2>

</h3> ... </h3>

<body> ... <br> .... </body>

<a href=""> </a>


300

<h2> ... <h2>

<body> ..... </body>

<a href=""> Click Here </a>

<body> </body>

<br>

<h2> ... </h2>

<body> ..... </body>

<a href=""> Click Here </a>

<body> </body>

300
Author of Python

Guido van Rossum


300

What is the Step 6 in navigating VSC?

Download Live Server.

400

The tag used to input another webpage.

<a>

400

Write a code that includes all the h tags and link tag.

<!DOCTYPE html>

<h1> ... </h1>

<h2> ... </h2>

<h3> ... </h3>

<h4> ... </h4>

<h5> ... </h5>

<h6> ... </h6>

<a href=""> </a>

400

<DOCTYPE! html>

<h1> ........ </h2>

<h3> ..... </h3>

<img src"">

<body> .... <br> ..... <br> .... <b> </body>

<p> ... </p>

<!DOCTYPE html>

<h1> ........ </h1>

<h3> ..... </h3>

<img src="">

<body> .... <br> ..... <br> .... <br> </body>

<p> ... </p>

400

Creator of C++ language.

Bjarne Stroustrup

400

Who is the proponent of Live Server?

Ritwick Dey

500

The tag used in floating inline.

<style> </style>

500

Write a code for floating inline.

<!DOCTYPE html>

<html>

<head>

<style>

img {

float:left;

margin-right: 15px

}

</style>

</head>

<body>

<h2> .... </h2>

<img src="">

</body>

</html>

500

<html>

image {

float-right;

margin-right:10 px;

}

</style>

<body> ..... </body>

</html>

<html>

<style>

img {

float:right;

margin-left:10 px;

}

</style>

<body> ..... </body>

<img src="">

</html>

500

Dennis co-founded B programming language with?

Ken Thompson and Brian Kernighan

500

What is the purpose of VSC?

To provide efficient application to create a website.