Compare commits

...

7 Commits

Author SHA1 Message Date
436325cd85 fix some errors and added one more on the list 2025-08-25 10:26:21 +00:00
2c4ca7e9ce added more lists and contents 2025-08-25 10:23:26 +00:00
4b84fbfa52 fixed the missing / on end of <ul> 2025-08-25 09:59:13 +00:00
7c5fa2b71f added the list with number <ol> 2025-08-25 09:57:46 +00:00
2fe1a2a666 added the list with <ul> 2025-08-25 09:56:06 +00:00
82a77d835d add <li> list 2025-08-25 08:17:03 +00:00
d8f5e3f88d first test 2025-08-22 05:26:22 +00:00
2 changed files with 82 additions and 0 deletions

61
index.html Normal file
View File

@@ -0,0 +1,61 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<meta charset="UTF-8">
<head>
</head>
<body>
<h3>Jalapeno Poppers Ingredients:</h3>
<ul>
<li>Cream Cheese</li>
<li>Applewood Beacon</li>
<li>Garlic Powder</li>
<li>Pimento Cheese</li>
<li>Serrano Peppers</li>
<li>Lime Juice</li>
<li>Sweet Onion</li>
<li>Cilantro</li>
</ul>
<h3>To Do's List:</h3>
<ol>
<li>Complete a lession on The Odin Project.com</li>
<li>Earns at least $100 a day by doing Instant Cart.</li>
<li>Return Stitich's Fix Clothing to Post Office.</li>
</ol>
<h3>List of places I'd like to visit:</h3>
<ul>
<li>To see my father in San Diego.</li>
<li>Visit my family in El Paso, TX.</li>
<li>Meeting new people in Austin, TX.</li>
</ul>
<h3>My all time top 5 favorite video games or movies:</h3>
<ol>
<li>Starcraft 2</li>
<li>Prometheus (movie)</li>
<li>XCOM: UFO Defense</li>
<li>Braveheart</li>
<li>World of Warcraft</li>
</ol>
</body>
</html>

21
index.html.save Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<meta charset="UTF-8">
<head>
</head>
<body>
<p>Hello, this is testing.
</body>
</html>