Skip to content

Commit

Permalink
Create my_lists.html
Browse files Browse the repository at this point in the history
  • Loading branch information
s2t2 authored Jul 22, 2024
1 parent 8844c84 commit f2039b5
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions docs/data/my_lists.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML List Parsing Exercise</title>
</head>

<body>
<h1>HTML List Parsing Exercise</h1>

<p>This is an HTML page.</p>

<h2>Favorite Ice cream Flavors</h2>
<ol id="my-fav-flavors">
<li>Vanilla Bean</li>
<li>Chocolate</li>
<li>Strawberry</li>
</ol>

<h2>Skills</h2>
<ul id="my-skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Python</li>
</ul>
</body>
</html>

0 comments on commit f2039b5

Please sign in to comment.