Skip to content

Commit

Permalink
Merge branch 'main' of github.com:prof-rossetti/python-for-finance in…
Browse files Browse the repository at this point in the history
…to main
  • Loading branch information
s2t2 committed Jul 22, 2024
2 parents bbc43d4 + 68290f6 commit e1b77ad
Show file tree
Hide file tree
Showing 2 changed files with 65 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 class="skill">HTML</li>
<li class="skill">CSS</li>
<li class="skill">JavaScript</li>
<li class="skill">Python</li>
</ul>
</body>
</html>
37 changes: 37 additions & 0 deletions docs/data/my_tables.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML Table Parsing Exercise</title>
</head>
<body>
<h1>HTML Table Parsing Exercise</h1>

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

<h2>Products</h2>

<table id="products">
<tr>
<th>Id</th>
<th>Name</th>
<th>Price</th>
</tr>
<tr>
<td>1</td>
<td>Chocolate Sandwich Cookies</td>
<td>3.50</td>
</tr>
<tr>
<td>2</td>
<td>All-Seasons Salt</td>
<td>4.99</td>
</tr>
<tr>
<td>3</td>
<td>Robust Golden Unsweetened Oolong Tea</td>
<td>2.49</td>
</tr>
</table>
</body>
</html>

0 comments on commit e1b77ad

Please sign in to comment.