Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Intro to HTML #236

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions recipe.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Perfect Sandwich</title>
</head>
<body>
<h1>The Perfect PB&J</h1>
<hr>
<img src="https://www.mashed.com/img/gallery/the-strange-origin-story-of-the-pbj/intro-1593182235.jpg" alt="A PB & J sandwich" width="200" height="200">
<hr>
<h2>Description</h2>
<p>This peanut butter and jelly sandwhich is my favorite sandwich. It has the perfect balance of ingredients and looks great when made right.</p>
<hr>
<h2>Ingredients</h2>
<ul>
<li>2 slices of white bread</li>
<li>1 jar of grape jelly</li>
<li>1 jar of creamy peanut butter</li>
<li>A butter knife</li>
<li>A sharp knife</li>
<li>A cutting board</li>
</ul>
<hr>
<h2>Directions</h2>
<ol>
<li>Lay both slices of bread next to each other on a cutting board.</li>
<li>With the butter knife, spread a 1/8 inch layer of peanut butter on the left side</li>
<li>On the right side, spread a 1/8 inch layer of jelly.</li>
<li>Carefully place the two halves together so that the jelly is on top.</li>
<li>With the sharp knife, carefully cut the sandwhich in half.</li>
<li>A cutting board</li>
</ol>
<hr>
<a href="https://www.food.com/recipe/traditional-peanut-butter-and-jelly-243965">Related recipes</a>
</body>
</html>
58 changes: 58 additions & 0 deletions sundial.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sundial</title>
</head>
<body>
<h1>Sundial</h1>

<p>From Wikipedia, the <em>free</em> encyclopedia.</p>

<p>
A <strong>sundial measures time by the position of the sun</strong>. The
most commonly seen designs, such as the 'ordinary' or standard garden
sundial, cast a shadow on a flat surface marked with the hours of the
day. As the position of the sun changes, the time indicated by the
shadow changes. However, sundials can be designed for any surface where
a fixed object casts a predictable shadow.
</p>

<p>
Most sundial designs indicate apparent solar time. Minor design
variations can measure standard and daylight saving time, as well.
</p>

<h2>History</h2>
<p>
Sundials in the form of obelisks (3500 BC) and shadow clocks (1500 BC)
are <strong>known from ancient Egypt</strong>, and were developed
further by other cultures, including the Chinese, Greek, and Roman
cultures. A type of sundial without gnomon is described in the old Old
Testament (Isaiah 38:2).
</p>

<p>
The mathematician and astronomer Theodosius of Bithynia (ca. 160 BC-ca.
100 BC) is said to have invented a universal sundial that could be used
anywhere on Earth. The French astronomer Oronce Fine constructed a
sundial of ivory in 1524. The Italian astronomer Giovanni Padovani
published a treatise on the sundial in 1570, in which he included
instructions for the manufacture and laying out of mural (vertical) and
horizontal sundials. Giuseppe Biancani's Construction instrumenti ad
horologia solaria discusses how to make a perfect sundial, with
accompanying illustrations.
</p>

<h2>Installation of standard sundials</h2>
<p>
Many ornamental sundials are designed to be used at 45 degrees north. By
tilting such a sundial, it may be installed so that it will keep time.
However, some mass-produced garden sundials are inaccurate because of
poor design and cannot be corrected.
</p>
</body>
</html>
</html>