Activity 2

Print your name in green.
Print the numbers 1 – 10, each number being a different color.
Prints your name in a Tahoma font.
Print a paragraph with 4 – 5 sentences. Each sentence should be a different font.
Print a paragraph that is a description of a book, include the title of the book as
well as its author. Names and titles should be underlined, adjectives should be
italicized and bolded.
Print your name to the screen with every letter being a different heading size.

<!DOCTYPE html>

<html lang=”en”>

<head>

    <meta charset=”UTF-8″>

    <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>

    <title>Activity no.2</title>

</head>

<body>

    <p style=”color: green;”>Trugillo, Kim Jacob</p>

</body>

</html>

<!DOCTYPE html>

<html lang=”en”>

<head>

    <meta charset=”UTF-8″>

    <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>

    <title>Activity no.2</title>

</head>

<body>

    <p style=”color:black;”>1</p>

    <p style=”color:blue;”>2</p>

    <p style=”color:yellow;”>3</p>

    <p style=”color:green;”>4</p>

    <p style=”color:orangered;”>5</p>

    <p style=”color:purple;”>6</p>

    <p style=”color:pink;”>7</p>

    <p style=”color:brown;”>8</p>

    <p style=”color:gray;”>9</p>

    <p style=”color:red;”>10</p>

</body>

</html>

<!DOCTYPE html>

<html lang=”en”>

<head>

    <meta charset=”UTF-8″>

    <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>

    <title>Activity no.2</title>

</head>

<body>

    <p style=”font-family: Tahoma;”>Trugillo, Kim Jacob</p>

</body>

</html>

<!DOCTYPE html>

<html lang=”en”>

<head>

    <meta charset=”UTF-8″>

    <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>

    <title>Activity no.2</title>

</head>

<body>

    <p style=”font-family: Arial;”>This is the Arial font style.</p>

    <p style=”font-family: Times New Roman;”>This is the Times New Roman font style.</p>

    <p style=”font-family: Courier New;”>This is the Courier New font style.</p>

    <p style=”font-family: Georgia;”>This is the Georgia font style.</p>

    <p style=”font-family: Verdana;”>This is the Verdana Verdana.</p>

</body>

</html>

<!DOCTYPE html>

<html lang=”en”>

<head>

    <meta charset=”UTF-8″>

    <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>

    <title>Activity no.2</title>

</head>

<body>

    <p>

        <u>The Great Gatsby</u> by <u>F. Scott Fitzgerald</u> is a

        <b><i>powerful</i></b> and <b><i>tragic</i></b> novel set in the

        <b><i>glamorous</i></b> Jazz Age. It tells the story of a

        <b><i>mysterious</i></b> millionaire and his obsession with a

        <b><i>beautiful</i></b> woman.

    </p>

</body>

</html>

<!DOCTYPE html>

<html lang=”en”>

<head>

    <meta charset=”UTF-8″>

    <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>

    <title>Activity no.2</title>

</head>

<body>

    <h6>K</h6>

    <h5>I</h5>

    <h4>M</h4>

    <h3>J</h3>

    <h2>A</h2>

    <h1>C</h1>

    <h2>O</h2>

    <h3>B</h3>

</body>

</html>