Skip to content
Merged
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
20 changes: 20 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Acme Tools — About</title>
</head>
<body>
<header>
<h1>About Acme Tools</h1>
<nav>
<a href="index.html">Home</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<p>We build practical tools for founders, maintainers, and small product teams.</p>
</main>
</body>
</html>
20 changes: 20 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Acme Tools — Contact</title>
</head>
<body>
<header>
<h1>Contact Acme Tools</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
</nav>
</header>
<main>
<p>Email us at hello@example.com for product questions.</p>
</main>
</body>
</html>
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />


<title>Billing Packages</title>
<link rel="stylesheet" href="./styles.css" />
</head>
Expand All @@ -21,7 +23,5 @@ <h1>Choose a package</h1>
<section id="packageGrid" class="package-grid" aria-live="polite"></section>
</main>

<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="./billing.js"></script>
</body>
</html>