-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from claire-fletcher/claire/adjust-css-nav-bar-…
…scroll-and-cards-responsive Feat: Responsive cards, CSS theme, additional photos page, contact template
- Loading branch information
Showing
10 changed files
with
406 additions
and
181 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" | ||
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="../styles/theme.css"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Anton+SC&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" | ||
rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
<title>Travel Blog</title> | ||
</head> | ||
|
||
<!-- body --> | ||
<body> | ||
|
||
<!-- header --> | ||
<header> | ||
<!-- this is the mobile nav bar--> | ||
<nav class="navbar navbar-light navbar-expand-sm justify-content-center"> | ||
<div class="container-fluid"> | ||
<a class="navbar-brand" href="https://codefirstgirls.com/">CFG</a> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#collapsibleNavbar"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="collapsibleNavbar"> | ||
<ul class="navbar-nav"> | ||
<li class="nav-item"> | ||
<a class="nav-link mx-2" href="../index.html">Home</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link mx-2" href="photos.html">Photos</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link mx-2" href="blog-landing.html">Blog</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link mx-2" href="#social-media">Social Media</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link mx-2" href="../index.html#blogs">Countries</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link mx-2 active" href="#">Contact us</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
</header> | ||
|
||
<!-- main --> | ||
<main> | ||
|
||
|
||
|
||
</main> | ||
|
||
<!-- Footer --> | ||
<footer class="text-center"> | ||
<div class="container-fluid"> | ||
<div class="container-fluid pt-2"> | ||
<!-- Section: Links to other information --> | ||
<section class="mt-5"> | ||
<h2> Catch us in the wild! </h2> | ||
</section> | ||
|
||
<!-- Section: Social --> | ||
<section id="social-media" class="text-center mb-5 p-2"> | ||
<a href="https://facebook.com" class="me-4"><i class="fa-brands fa-facebook footer-icons"></i></a> | ||
<a href="https://x.com" class="me-4"><i class="fa-brands fa-x-twitter footer-icons"></i></a> | ||
<a href="https://instagram.com" class="me-4"><i class="fa-brands fa-instagram footer-icons"></i></a> | ||
<a href="https://linkedin.com" class="me-4"><i class="fa-brands fa-linkedin footer-icons"></i></a> | ||
<a href="https://github.com/claire-fletcher/travel-blog" class="me-4"><i class="fa-brands fa-github footer-icons"></i></a> | ||
</section> | ||
</div> | ||
<hr class="my-5" /> | ||
<div class="text-center p-3"> | ||
© 2024 Copyright: <a>HTML-Heroines</a> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
<!-- scripts --> | ||
<script src="./scripts/button.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" | ||
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" | ||
crossorigin="anonymous"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.