-
Notifications
You must be signed in to change notification settings - Fork 33
Added Construction Website Landing Page using HTML CSS and JS #84
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
nimish-nimishmittal
wants to merge
1
commit into
0silverback0:main
Choose a base branch
from
nimish-nimishmittal:nimishHF23
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
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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.
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,246 @@ | ||
| <!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"> | ||
| <link rel="stylesheet" href="styles.css"> | ||
| <link rel="shortcut icon" href="img/favicon.jpg" type="image/x-icon"> | ||
| <title>CONSTRUCTENDO</title> | ||
| </head> | ||
| <body> | ||
| <header class="header"> | ||
| <nav class="navbar"> | ||
| <a href="#" class="nav-logo">CONSTRUCTENDO</a> | ||
| <ul class="nav-menu"> | ||
| <li class="nav-item"> | ||
| <a href="index.html" class="nav-link">Home</a> | ||
| </li> | ||
| <li class="nav-item"> | ||
| <a href="#mainpart" class="nav-link">Our Services</a> | ||
| </li> | ||
| <li class="nav-item"> | ||
| <a href="#contactus" class="nav-link">Contact Us</a> | ||
| </li> | ||
| </ul> | ||
| <div class="hamburger"> | ||
| <span class="bar"></span> | ||
| <span class="bar"></span> | ||
| <span class="bar"></span> | ||
| </div> | ||
| </nav> | ||
| </header> | ||
| <main> | ||
| <div class="intro"> | ||
| <h1>CONSTRUCTENDO</h1> | ||
| <p>A TENDER PASSING CONSTRUCTION WEBSITE</p> | ||
| <a href="#contactus"><button>REQUEST QUOTE</button></a> | ||
| </div> | ||
|
|
||
| </main> | ||
|
|
||
| <div class="mainpart" id="mainpart"> | ||
| <h2>OUR SERVICES</h2> | ||
| </div> | ||
| <section class="grid" id="grid"> | ||
|
|
||
| <div class="grid-item"> | ||
| <div class="card"> | ||
| <img class="card-img" src="./img/Interiors.jpg" alt="Rome" /> | ||
| <div class="card-content"> | ||
| <h1 class="card-header">Interior</h1> | ||
| <p class="card-text"> | ||
| Lorem, ipsum dolor sit amet consectetur adipisicing elit. Expedita corrupti a pariatur sint obcaecati, nisi doloremque even. | ||
| </p> | ||
| <button class="card-btn"> EXPLORE <span>→</span></button> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="grid-item"> | ||
| <div class="card"> | ||
| <img | ||
| class="card-img" | ||
| src="./img/Renovation.jpg" | ||
| alt="Grand Canyon" | ||
| /> | ||
| <div class="card-content"> | ||
| <h1 class="card-header">Renovation</h1> | ||
| <p class="card-text"> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolore, debitis, fugiat alias placeat saepe quibusdam at dicta deleniti od. | ||
| </p> | ||
| <button class="card-btn"> EXPLORE <span>→</span></button> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="grid-item"> | ||
| <div class="card"> | ||
| <img class="card-img" src="./img/RoofRepairing.jpeg" alt="Maldives" /> | ||
| <div class="card-content"> | ||
| <h1 class="card-header">Roof Repairing</h1> | ||
| <p class="card-text"> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Autem explicabo praesentium, magnam nam nihil, nostrum at esse ad eligendi. | ||
| </p> | ||
| <button class="card-btn"> EXPLORE <span>→</span></button> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="grid-item"> | ||
| <div class="card"> | ||
| <img class="card-img" src="./img/GroundDesigning.jpg" alt="Rome" /> | ||
| <div class="card-content"> | ||
| <h1 class="card-header">Ground Designing</h1> | ||
| <p class="card-text"> | ||
| Lorem, ipsum dolor sit amet consectetur adipisicing elit. Expedita corrupti a pariatur sint obcaecati, nisi doloremque even. | ||
| </p> | ||
| <button class="card-btn"> EXPLORE <span>→</span></button> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="grid-item"> | ||
| <div class="card"> | ||
| <img class="card-img" src="./img/HouseInteriors.jpeg" alt="Rome" /> | ||
| <div class="card-content"> | ||
| <h1 class="card-header">House Interiors</h1> | ||
| <p class="card-text"> | ||
| Lorem, ipsum dolor sit amet consectetur adipisicing elit. Expedita corrupti a pariatur sint obcaecati, nisi doloremque even. | ||
| </p> | ||
| <button class="card-btn"> EXPLORE <span>→</span></button> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="grid-item"> | ||
| <div class="card"> | ||
| <img class="card-img" src="./img/HallDecorators.jpg" alt="Rome" /> | ||
| <div class="card-content"> | ||
| <h1 class="card-header">Hall Decorators</h1> | ||
| <p class="card-text"> | ||
| Lorem, ipsum dolor sit amet consectetur adipisicing elit. Expedita corrupti a pariatur sint obcaecati, nisi doloremque even. | ||
| </p> | ||
| <button class="card-btn"> EXPLORE <span>→</span></button> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="grid-item"> | ||
| <div class="card"> | ||
| <img class="card-img" src="./img/GardenDecoratorsjpg.jpg" alt="Rome" /> | ||
| <div class="card-content"> | ||
| <h1 class="card-header">Garden Decorators</h1> | ||
| <p class="card-text"> | ||
| Lorem, ipsum dolor sit amet consectetur adipisicing elit. Expedita corrupti a pariatur sint obcaecati, nisi doloremque even. | ||
| </p> | ||
| <button class="card-btn"> EXPLORE <span>→</span></button> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="grid-item"> | ||
| <div class="card"> | ||
| <img class="card-img" src="./img/BuildingStaff.jpeg" alt="Rome" /> | ||
| <div class="card-content"> | ||
| <h1 class="card-header">Building Staff</h1> | ||
| <p class="card-text"> | ||
| Lorem, ipsum dolor sit amet consectetur adipisicing elit. Expedita corrupti a pariatur sint obcaecati, nisi doloremque even. | ||
| </p> | ||
| <button class="card-btn"> EXPLORE <span>→</span></button> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="grid-item"> | ||
| <div class="card"> | ||
| <img class="card-img" src="./img/ElectricitynPlumbing.jpeg" alt="Rome" /> | ||
| <div class="card-content"> | ||
| <h1 class="card-header">Electricity and Plumbing</h1> | ||
| <p class="card-text"> | ||
| Lorem, ipsum dolor sit amet consectetur adipisicing elit. Expedita corrupti a pariatur sint obcaecati, nisi doloremque even. | ||
| </p> | ||
| <button class="card-btn"> EXPLORE <span>→</span></button> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </section> | ||
| <br><br><br> | ||
|
|
||
| <div class="container" id="contactus"> | ||
| <div class="contact-parent"> | ||
| <div class="contact-child child1"> | ||
| <p> | ||
| <img src="svg/location.svg" alt="loc"> Address <br /> | ||
| <span> Bharati Vidyapeeth College of Engineering <br> Dhankawadi, Pune - 411043 | ||
| <br /> | ||
| Maharashtra, India | ||
| </span> | ||
| </p> | ||
| <p> | ||
| <img src="svg/phone.svg" alt="ph"> Let's Talk <br /> | ||
| <span> +91 1234567890</span> | ||
| </p> | ||
| <p> | ||
| <img src="svg/envelope.svg" alt="env"> General Support <br /> | ||
| <span>info@constructendo.in</span> | ||
| </p> | ||
| </div> | ||
| <div class="contact-child child2"> | ||
| <div class="inside-contact"> | ||
| <h2>Contact Us</h2> | ||
| <h3> | ||
| <span id="confirm"> | ||
| </h3> | ||
| <p>Name *</p> | ||
| <input id="txt_name" type="text" Required="required"> | ||
| <p>Email *</p> | ||
| <input id="txt_email" type="text" Required="required"> | ||
| <p>Phone *</p> | ||
| <input id="txt_phone" type="text" Required="required"> | ||
| <p>Subject *</p> | ||
| <input id="txt_subject" type="text" Required="required"> | ||
| <p>Message *</p> | ||
| <textarea id="txt_message" rows="4" cols="20" Required="required" ></textarea> | ||
| <input type="submit" id="btn_send" value="SEND"> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <footer class="footer"> | ||
| <div class="container-foot"> | ||
| <div class="row"> | ||
| <div class="footer-col"> | ||
| <h4>constructendo</h4> | ||
| <ul> | ||
| <li><a href="index.html">home</a></li> | ||
| <li><a href="#mainpart">our services</a></li> | ||
| <li><a href="#contactus">contact us</a></li> | ||
| </ul> | ||
| </div> | ||
| <div class="footer-col"> | ||
| <h4>get help</h4> | ||
| <ul> | ||
| <li><a href="#">FAQ</a></li> | ||
| <li><a href="#">shipping</a></li> | ||
| <li><a href="#">returns</a></li> | ||
| <li><a href="#">order status</a></li> | ||
| <li><a href="#">payment options</a></li> | ||
| </ul> | ||
| </div> | ||
| <div class="footer-col"> | ||
| <h4>follow us</h4> | ||
| <div class="social-links"> | ||
| <a href="#"><img src="svg/facebook.svg" alt="f"></a> | ||
| <a href="#"><img src="svg/twitter.svg" alt="t"></a> | ||
| <a href="#"><img src="svg/instagram.svg" alt="i"></a> | ||
| <a href="#"><img src="svg/linkedin.svg" alt="l"></a> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </footer> | ||
| </body> | ||
| <script src="/script.js"></script> | ||
| </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 navMenu = document.querySelector(".nav-menu"); | ||
| const navLink = document.querySelectorAll(".nav-link"); | ||
|
|
||
| hamburger.addEventListener("click", mobileMenu); | ||
| navLink.forEach(n => n.addEventListener("click", closeMenu)); | ||
|
|
||
| function mobileMenu() { | ||
| hamburger.classList.toggle("active"); | ||
| navMenu.classList.toggle("active"); | ||
| } | ||
|
|
||
| function closeMenu() { | ||
| hamburger.classList.remove("active"); | ||
| navMenu.classList.remove("active"); | ||
| } |
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.
this should link to /index.html so that navigation is easy for user to view the page and return home. alos in LandingPages/index.html you also need to create a card to add your project to the list