Create a webpage that prints your name to the screen.
Create a webpage that prints the numbers 1 – 10 to the screen.
Create a webpage and set its title to “This is a webpage”.
Create a webpage that prints the message “When was this webpage created? Check page’s title for the answer.” to the screen, and set the title of the page to the current date.
Create a webpage that prints any text of your choosing to the screen, do not include a head section in the code.
Repeat exercise #5, but this time include a head section in the code.

<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<!–This is the Title of the page–>
<title>This is a webpage</title>
</head>
<body>
<!–This is my name–>
<h1>Trugillo Kim Jacob</h1>
</body>
</html>

<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<!–This is the Title of the page–>
<title>This is a webpage</title>
</head>
<body>
<!–Numbers from 1 – 10–>
<p>1</p>
<p>2</p>
<p>3</p>
<p>4</p>
<p>5</p>
<p>6</p>
<p>7</p>
<p>8</p>
<p>9</p>
<p>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>This is a webpage</title>
</head>
<body>
</body>
</html>

<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Feb.2, 2026</title>
</head>
<body>
<p>When was the this webpage created? Check the pages’s title for the answer.</p>
</body>
</html>

<!DOCTYPE html>
<html>
<body>
<h1>Be Happy.</h1>
</body>
</html>

<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>This is a webpage</title>
</head>
<body>
<h1>Be Happy.</h1>
</body>
</html>