Compare commits

...

24 Commits

Author SHA1 Message Date
fd161e4fd8 added alt="dog 2025-08-27 10:30:43 +00:00
055ae63a7a added img src="./images/dog.jpg 2025-08-27 10:19:28 +00:00
1cad560342 created images dicitonary and added dog.jpg 2025-08-27 10:18:19 +00:00
84b7329d4d added top.com 2025-08-27 10:05:35 +00:00
5660449711 deleted top.com/about -- added ./ to pages/about.html 2025-08-27 09:58:42 +00:00
cd5cdcec11 added pages/ 2025-08-27 09:55:41 +00:00
85f93568de created pages dictionary and moved about.html into it 2025-08-27 09:54:04 +00:00
5d29b9e18e a href="about.html">About 2025-08-27 09:29:48 +00:00
acb6ba0f39 wrote the codes into about.html 2025-08-27 09:26:32 +00:00
973f2c1b31 created about.html 2025-08-27 09:21:33 +00:00
bf30683399 rel="noreferrer">Visit Example</a> 2025-08-27 09:11:15 +00:00
7a29cb16cd rel="noopener">Open Example</a> 2025-08-27 09:05:36 +00:00
78af9eb907 rel="noopener noreferrer" 2025-08-27 09:00:20 +00:00
fab9d60a86 target="_blank 2025-08-27 08:52:01 +00:00
7cd08af5dc anchor element 2025-08-27 08:50:12 +00:00
222127d6e6 commit error; added <a> 2025-08-27 08:37:13 +00:00
ddc334977b created new dictionary "odin-links-and-images" and index.html; added <h1> and <a> 2025-08-27 08:32:28 +00:00
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
5 changed files with 114 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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

View File

@@ -0,0 +1,18 @@
<!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>
<h1>Homepage</h1>
<a href="https://www.theodinproject.com/about">About The Odin Project</a>
<a href="./pages/about.html">About</a>
<img src="./images/dog.jpg" alt="dog">
</body>
</html>

View File

@@ -0,0 +1,14 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Odin Links and Images</title>
</head>
<body>
<h1>About Page</h1>
</body>
</html>