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

Sapphire - Monica L & Charlie J #46

Open
wants to merge 2 commits into
base: main
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
Binary file added assets/EastWinter.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/lake-wshington.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/lakecrescent.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added pages/facts.css
Empty file.
29 changes: 28 additions & 1 deletion pages/facts.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,36 @@
<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>Document</title>
<title>Facts about the PNW camp life!</title>
</head>

<body>
<header>Please enjoy our fun facts!</header>
<nav>
<!-- nav content goes hereeee-->
</nav>
<main>
<section>
<h1> You can get a little bit of everything in Washington</h1>
<p> Wether you're looking to find a beautiful mountain escape, a beachside cabin, a log house off the grid, or just a quiet spot to set up camp.. Washington has you covered.</p>
<img src="/assets/Night Cam 2_Night-Camp-2.jpg" alt="czy summer camping">
</section>

<section>
<h1> Summer & Winter Camp Life</h1>
<p> While Washingtonians may complain about the cold, for a lot of folks coming from states that get extreme winters.. Washington is a dream destination for winter camping. In the summer time you can head towards Eastern Washington to find beautiful crystal blue lakes & 90 degree weather!</p>
<img src="/assets/vecteezy_summer-camp-in-night-forest-cartoon-illustration_15918512.jpg" alt="summer camping">
</section>

<section>
<h1> Love to Hike?</h1>
<p>Do you love to hike? Most Washingtonians do. Set yourself up with some comfortable shoes to trek through the beautiful PNW.</p>
<img src="/assets/vecteezy_camping-tent-with-campfire-and-tourist-equipment_12861863.jpg" alt="summer camping">
</section>
</main>
<footer>
Charlie J, Monica L
</footer>

</body>
</html>
6 changes: 6 additions & 0 deletions pages/gallery.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<img alt= "" src="" >

<img alt= "" src="" >

<img alt= "" src="" >
Comment on lines +1 to +5
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmmm, what happened here? :O


47 changes: 46 additions & 1 deletion pages/gallery.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,54 @@
<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>Document</title>
<title>Beautiful Washington</title>
<link href="/styles/style.css" rel="stylesheet">
<link href="/styles/gallery.css" rel="stylesheet">
</head>

<body>
<header>
<nav>
<ul>
<li><a href="index.html">Homepage</a></li>
<li><a href="gallery.html">Beautiful Washington</a></li>
<li><a href="facts.html">Camping in Washington</a></li>
</ul>
</nav>
<h1>Camping is Life</h1>
</header>

<main>
<!-- Your main content goes here -->

<!-- Image 1 -->
<figure>
<img src="/assets/EastWinter.jpeg" alt="Eastern Washington in the Winter">
<figcaption>
Look how beautiful Eastern Washington is in the winter time!
</figcaption>
</figure>

<!-- Image 2 -->
<figure>
<img src="/assets/lakecrescent.jpeg" alt="Washington in the Summer">
<figcaption>
Look how beautiful Washington is in the summer! Source:
</figcaption>
</figure>
Comment on lines +36 to +41
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great use of <figure> and <figcaption>! Minor, but the copy says "Source:" and doesn't point anywhere haha


<!-- Image 3 -->
<figure>
<img src="/assets/lake-wshington.jpeg" alt="Lake Washington">
<figcaption>
Lake Washington
</figcaption>
</figure>
</main>

<footer>
Camped & Reviewed by: Charlie J & Monica L
</footer>

</body>
</html>
Empty file added pages/index.css
Empty file.
27 changes: 25 additions & 2 deletions pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,32 @@
<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>Document</title>
<title>Washington Camping </title>
<link href="/styles/style.css" rel="stylesheet">
<link href="/styles/index.css" rel="stylesheet">

</head>

<header>
<nav class="top-banner">
<a href="index.html">Homepage</a>
<a href="gallery.html">Beautiful Washington</a>
<a href="facts.html">Facts about PNW Camp Life!</a>
</nav>
</header>
<body>

<section class="content-container">
<h1>Welcome to <em>Cozy Campground</em>!</h1>
<section>
<h2>About Us</h2>
<p><em>Two Adie Team!</em> Monica L & Charlie J
</p>
</section>
<section class="footer-container">
<footer class="footer-banner">
<a href="https://www.indeed.com/">Careers at Cozy Campground</a>
<a href="mailto:[email protected]">Contact Us</a>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we stan a bidet (?)

</footer>
</section>
</body>
</html>
Empty file added pages/style.css
Empty file.