-
Notifications
You must be signed in to change notification settings - Fork 62
Saras project-buisiness-site #60
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
Open
SaraEnderborg
wants to merge
14
commits into
Technigo:main
Choose a base branch
from
SaraEnderborg:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
4356cf8
Initial commit
SaraEnderborg 0f6d506
update image path
SaraEnderborg 7309084
changes image, css fixes
SaraEnderborg 0567ea0
this commit will add the form
SaraEnderborg 644ba5f
added hero button and responsive hero
SaraEnderborg 489c48a
this commit will add portfolio index+styling
SaraEnderborg 112277c
delited index folder
SaraEnderborg 509f0d0
this commit added images to portfolio
SaraEnderborg 7bcb197
this commit changed fonts for logo and body
SaraEnderborg 97009bf
html files moved from folder
SaraEnderborg 2eae268
This commit added hamburger menu and changed button styling
SaraEnderborg ef47bc6
This commit fixed typos and coding faults
SaraEnderborg 95e60da
This commit changed the hamburger menu and mediaqueries
SaraEnderborg 092cb89
this commit changed to https method and cleaned js
SaraEnderborg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
| You have successfully downloaded your photos. You will need to unzip these files onto your computer before using them. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 hidden or 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,200 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Photography by Louise</title> | ||
| <link | ||
| href="https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lato:wght@400;700&display=swap" rel="stylesheet"> | ||
| <link | ||
| rel="stylesheet" | ||
| href="style.css"> | ||
| </head> | ||
| <body> | ||
| <div class="wrapper"> | ||
| <header class="header"> | ||
| <h1>Photography by Louise</h1> | ||
| <button class="hamburger" aria-label="Menu">☰</button> | ||
| <nav class="navbar"> | ||
| <ul> | ||
| <li><a href="#about">About</a></li> | ||
| <li><a href="portfolio.html">Portfolio</a></li> | ||
| <li><a href="#sessions">Sessions</a></li> | ||
| <li><a href="#contact">Contact</a></li> | ||
| </ul> | ||
| </nav> | ||
| </header> | ||
| <main> | ||
| <section class="hero"> | ||
| <div class="hero-content"> | ||
| <h2>Catch the moments that means the most</h2> | ||
| <p>Beautiful memories, captured forever</p> | ||
| <a | ||
| href="#contact" | ||
| class="hero-button" | ||
| > | ||
| Book a session | ||
| </a> | ||
| </div> | ||
| </section> | ||
|
|
||
| <section | ||
| id="about" | ||
| class="about" | ||
| > | ||
| <div class="about wrapper"> | ||
| <img | ||
| class="about-img" | ||
| src="../images/photographer.jpg" | ||
| alt="photographer portrait" | ||
| /> | ||
| <div class="about-text"> | ||
| <h2>About Me</h2> | ||
| <p> | ||
| Hello! I'm Louise, a passionate photographer who loves capturing | ||
| authentic moments. Whether it's a wedding, a couple shoot, or | ||
| playful kids – my goal is to create timeless memories that you | ||
| will treasure forever. | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </section> | ||
|
|
||
| <section | ||
| id="Sessions" | ||
| class="grid" | ||
| > | ||
| <article class="card"> | ||
| <img | ||
| src="../images/wed2.jpg" | ||
| alt="wedding-beach" | ||
| /> | ||
| <h3>Wedding</h3> | ||
| <p>Romantic pictures from your big day.</p> | ||
| </article> | ||
|
|
||
| <article class="card"> | ||
| <img | ||
| src="../images/couple1.jpg" | ||
| alt="Couple-photo" | ||
| /> | ||
| <h3>Couples</h3> | ||
| <p>Capture love and your special moments</p> | ||
| </article> | ||
|
|
||
| <article class="card"> | ||
| <img | ||
| src="../images/kid1.jpg" | ||
| alt="Family/Children-photo" | ||
| /> | ||
| <h3>Family/Children</h3> | ||
| <p>Natural and playful portraits of family/children</p> | ||
| </article> | ||
| </section> | ||
| </main> | ||
|
|
||
| <section | ||
| id="contact" | ||
| class="contact" | ||
| > | ||
| <h2>Make a request</h2> | ||
| <form | ||
| action="https://httpbin.org/anything" | ||
| method="POST" | ||
| > | ||
| <div class="form-input"> | ||
| <label for="name">Name</label> | ||
| <input | ||
| required | ||
| type="text" | ||
| name="name" | ||
| id="name" | ||
| placeholder="Your full name" | ||
| /> | ||
| </div> | ||
|
|
||
| <div class="form-input"> | ||
| <label for="session">Type of session</label> | ||
| <select | ||
| required | ||
| name="session" | ||
| id="session" | ||
| > | ||
| <option value="">Please choose</option> | ||
| <option value="wedding">Wedding</option> | ||
| <option value="couple">Couple</option> | ||
| <option value="family">Family/Children</option> | ||
| </select> | ||
| </div> | ||
| <div class="form-input"> | ||
| <p>Preferred time of day:</p> | ||
| <label><input | ||
| type="radio" | ||
| name="time" | ||
| value="morning"> Morning | ||
| </label> | ||
| <label><input | ||
| type="radio" | ||
| name="time" | ||
| value="afternoon"> Afternoon | ||
| </label> | ||
| <label><input | ||
| type="radio" | ||
| name="time" | ||
| value="Evening"> Evening | ||
| </label> | ||
| <label><input | ||
| type="radio" | ||
| name="time" | ||
| value="whole"> Whole day | ||
| </label> | ||
| </div> | ||
| <div class="form-input"> | ||
| <label> | ||
| <input | ||
| type="checkbox" | ||
| name="newsletter"> Sign me up for news | ||
| </label> | ||
| </div> | ||
| <div class="form-input"> | ||
| <label for="date">Preferred date | ||
| </label> | ||
| <input | ||
| required | ||
| type="date" | ||
| name="date" | ||
| id="date" | ||
| /> | ||
| </div> | ||
| <div class="form-input"> | ||
| <label for="email">Email</label> | ||
| <input | ||
| required | ||
| type="email" | ||
| name="email" | ||
| id="email" | ||
| placeholder="[email protected]" | ||
| /> | ||
| </div> | ||
| <div class="form-input"> | ||
| <label for="message">Message</label> | ||
| <textarea | ||
| name="message" | ||
| id="message" | ||
| rows="5" | ||
| cols="50" | ||
| placeholder="Tell me about your vision?" | ||
| ></textarea> | ||
| </div> | ||
|
|
||
| <button type="submit">Send Request</button> | ||
| </form> | ||
| </section> | ||
|
|
||
| <footer> | ||
| <p>© 2025 Photography by Louise</p> | ||
| </footer> | ||
| </div> | ||
| <script src="script.js"></script> | ||
| </body> | ||
| </html> | ||
This file contains hidden or 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,56 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Portfolio - Photography by Louise</title> | ||
| <link | ||
| href="https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lato:wght@400;700&display=swap" | ||
| rel="stylesheet"> | ||
| <link | ||
| rel="stylesheet" | ||
| href="style.css"> | ||
| </head> | ||
| <body> | ||
| <div class="wrapper"> | ||
| <header class="header"> | ||
| <h1 class="logo">Photography by Louise</h1> | ||
| <button class="hamburger" | ||
| aria-label="Menu"> | ||
| ☰ | ||
| </button> | ||
| <nav class="navbar"> | ||
| <ul> | ||
| <li><a href="index.html#about">About</a></li> | ||
| <li><a href="portfolio.html">Portfolio</a></li> | ||
| <li><a href="index.html#sessions">Sessions</a></li> | ||
| <li><a href="index.html#contact">Contact</a></li> | ||
| </ul> | ||
| </nav> | ||
| </header> | ||
|
|
||
| <section class="portfolio"> | ||
| <h2>Portfolio</h2> | ||
| <div class="portfolio-grid"> | ||
| <img | ||
| src="../images/wed4.jpg" | ||
| alt="Wedding moment" /> | ||
| <img | ||
| src="../images/couple2.jpg" | ||
| alt="Couple session" /> | ||
| <img | ||
| src="../images/family1.jpg" | ||
| alt="Family shoot" /> | ||
| <img | ||
| src="../images/kid3.jpg" | ||
| alt="Children portrait" /> | ||
| </div> | ||
| </section> | ||
|
|
||
| <footer class="footer"> | ||
| <p>© 2025 Photography by Louise</p> | ||
| </footer> | ||
| </div> | ||
| <script src="script.js"></script> | ||
| </body> | ||
| </html> |
This file contains hidden or 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,16 @@ | ||
| const hamburger = document.querySelector('.hamburger') | ||
| const navbar = document.querySelector('.navbar') | ||
| const navLinks = document.querySelectorAll('.navbar a') | ||
|
|
||
| hamburger.addEventListener('click', () => { | ||
| navbar.classList.toggle('show') | ||
| hamburger.classList.toggle('open') | ||
| hamburger.textContent = navbar.classList.contains('show') ? '✕' : '☰' | ||
| }); | ||
|
|
||
| navLinks.forEach(link => { | ||
| link.addEventListener('click', () => { | ||
| navbar.classList.remove('show') | ||
| hamburger.textContent = '☰' | ||
| }) | ||
| }) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess you have forgotten to add this font link to the portfolio.html, so when you go to the portfolio-side, the h1 (Photography by Louise) have another font.