-
Notifications
You must be signed in to change notification settings - Fork 102
feat: Create Nova Template Layout #177
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,281 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <meta http-equiv="X-UA-Compatible" content="ie=edge" /> | ||
| <link rel="stylesheet" href="./styles/reset.css" /> | ||
| <link rel="stylesheet" href="./styles/index.css" /> | ||
| <link rel="icon" type="image/x-icon" href="/images/favicon.png" /> | ||
| <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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" | ||
| rel="stylesheet" /> | ||
| <title>Nova Theme</title> | ||
| </head> | ||
| <body> | ||
| <header class="container"> | ||
| <nav class="container__nav"> | ||
| <a href="/" class="logo"> | ||
| <img src="./images/logo.svg" alt="nova Logo" loading="lazy" title="Visit Homepage" /> | ||
| </a> | ||
| <ul class="nav"> | ||
| <li class="nav__item"><a class="nav__link" href="#theteam">The Team</a></li> | ||
| <li class="nav__item"> | ||
| <a class="nav__link" href="#plan">plan</a> | ||
| </li> | ||
| <li class="nav__item"><a class="nav__link" href="#features">Features</a></li> | ||
| <li class="nav__item btn"> | ||
| <a class="nav__link nav__link--hover" href="https://themewagon.github.io/Nova/#"> | ||
| Download FREE! | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </nav> | ||
| <section class="container__nav hero"> | ||
| <article class="left-section__hero"> | ||
| <h1 class="title"> | ||
| Beautiful Free Nova | ||
| <br /> | ||
| template | ||
| </h1> | ||
| <p class="description"> | ||
| A top notch premium quality | ||
| <br /> | ||
| template for your next web | ||
| <br /> | ||
| project. | ||
| </p> | ||
| <div class="nav__item btn btn__hero"> | ||
| <a class="nav__link nav__link--hover" href="https://themewagon.github.io/Nova/#"> | ||
| Download FREE! | ||
| </a> | ||
| </div> | ||
| </article> | ||
| <figure class="ipad-screen__hero"> | ||
| <img src="./images/screen.png" alt="Next Gen App Banner" /> | ||
| </figure> | ||
| </section> | ||
| </header> | ||
|
|
||
| <main class="main__container"> | ||
| <section id="features" class="features__container"> | ||
| <h2 class="features__header">FEATURES</h2> | ||
| <ul class="offer"> | ||
| <li class="offer__item"> | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
| <div class="feature__icon"> | ||
| <img src="./images/responsive.svg" alt="Mobile Phone Icon" /> | ||
| </div> | ||
| <h3 class="feature__title">Fully Responsive</h3> | ||
| <p class="feature__description"> | ||
| Looks amazing on any device: | ||
| <br /> | ||
| smartphone, tablet, laptop and | ||
| <br /> | ||
| </p> | ||
| </li> | ||
|
|
||
| <li class="offer__item"> | ||
| <div class="feature__icon"> | ||
| <img src="./images/customizable.svg" alt="Tools Icon" /> | ||
| </div> | ||
| <h3 class="feature__title">CUSTOMIZABLE</h3> | ||
| <p class="feature__description"> | ||
| Change the colors, pictures or | ||
| <br /> | ||
| any of the sections to suit your | ||
| <br /> | ||
| needs. | ||
| </p> | ||
| </li> | ||
|
|
||
| <li class="offer__item"> | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
| <div class="feature__icon"> | ||
| <img src="./images/design.svg" alt="Prize Icon" /> | ||
| </div> | ||
| <h3 class="feature__title"> | ||
| SLICK AND BEAUTIFUL | ||
| <br /> | ||
| DESIGN | ||
| </h3> | ||
| <p class="feature__description"> | ||
| Trendy and fresh design, fits | ||
| <br /> | ||
| any website. | ||
| </p> | ||
| </li> | ||
| </ul> | ||
| </section> | ||
|
|
||
| <section class="logos__container"> | ||
| <figure class="logos"> | ||
| <img src="./images/logos.png" alt="logos row" /> | ||
| </figure> | ||
| </section> | ||
|
|
||
| <section class="about__container"> | ||
| <figure class="imac-screen"> | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Dlaczego wiec w pozostałych nie użyłaś tego znacznika?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Trochę się miotam z BEM i znacznikami, w trakcie pisania HTMLa dopiero gdzieś wygooglowałam co to jest figure, bo mi się divoza zrobiła, ale w docsach MDN jest napisane, że "referenced as a single unit" co rozumiem, że jest to element pojedynczy, ale co to znaczy? bez treści? I umieściłam go testowo :D
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Myślę, że tutaj znajdziesz odpowiedź: https://stackoverflow.com/questions/37828046/what-is-the-purpose-of-the-figure-tag-in-html Jeśli obrazek (i nie tylko) reprezentuje przekaz tj. niesie za sobą treść to wtedy używamy |
||
| <img src="./images/imac.png" alt="White Imac on light background" /> | ||
| </figure> | ||
| <article class="about__section-text"> | ||
| <h3 class="about__title">SIMPLE AND BEAUTIFUL</h3> | ||
| <p class="about__description"> | ||
| Use Nova theme for your next web project. It is completely customizable so you can | ||
| change any of the sections to fit your needs. Nova Theme is Free for any kind of use, | ||
| personal and commercial. Have fun and good luck! | ||
| </p> | ||
| </article> | ||
| </section> | ||
|
|
||
| <section class="plan__container"> | ||
| <header class="plan__header"> | ||
| <h3 class="plan__title">CHOOSE YOUR PRICING PLAN</h3> | ||
| <p class="plan__description">Pick any of our super affordable plan plans</p> | ||
| </header> | ||
| <ul class="plan__cards"> | ||
| <li class="plan__card-item"> | ||
| <h4 class="plan__card-title">BASIC</h4> | ||
| <p class="plan__card-price">$15</p> | ||
| <p class="plan__period">per month</p> | ||
| <ul class="plan__list"> | ||
| <li class="list__item"> | ||
| <span class="checkmark">✓</span> | ||
| Up to 7 Projects | ||
| </li> | ||
| <li class="list__item"> | ||
| <span class="checkmark">✓</span> | ||
| 2 Additional Developers | ||
| </li> | ||
|
|
||
| <li class="nav__item btn btn__plan"> | ||
| <a class="nav__link plan__link--hover" href="https://themewagon.github.io/Nova/#"> | ||
| Get Started | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </li> | ||
| <li class="plan__card-item middle__plan"> | ||
| <h4 class="plan__card-title">AGENCY</h4> | ||
| <p class="plan__card-price">$55</p> | ||
| <p class="plan__period">per month</p> | ||
| <ul class="plan__list"> | ||
| <li class="list__item"> | ||
| <span class="checkmark">✓</span> | ||
| Up to 25 Projects | ||
| </li> | ||
| <li class="list__item"> | ||
| <span class="checkmark">✓</span> | ||
| 2 Additional Developers | ||
| </li> | ||
| <li class="list__item"> | ||
| <span class="checkmark">✓</span> | ||
| Unlimited Support | ||
| </li> | ||
| <li class="nav__item btn btn__plan"> | ||
| <a class="nav__link plan__link--hover" href="https://themewagon.github.io/Nova/#"> | ||
| Get Started | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </li> | ||
| <li class="plan__card-item"> | ||
| <h4 class="plan__card-title">PRO</h4> | ||
| <p class="plan__card-price">$75</p> | ||
| <p class="plan__period">per month</p> | ||
| <ul class="plan__list"> | ||
| <li class="list__item"> | ||
| <span class="checkmark">✓</span> | ||
| Up to 7 Projects | ||
| </li> | ||
| <li class="list__item"> | ||
| <span class="checkmark">✓</span> | ||
| 2 Additional Developers | ||
| </li> | ||
| <li class="list__item"> | ||
| <span class="checkmark">✓</span> | ||
| Unlimited Support | ||
| </li> | ||
| <li class="list__item"> | ||
| <span class="checkmark">✓</span> | ||
| 1.5GB Disk Space | ||
| </li> | ||
| <li class="nav__item btn btn__plan"> | ||
| <a class="nav__link plan__link--hover" href="https://themewagon.github.io/Nova/#"> | ||
| Get Started | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </li> | ||
| </ul> | ||
| </section> | ||
|
|
||
| <section class="team__container"> | ||
| <h3 id="theteam" class="team__title">THE TEAM</h3> | ||
| <div class="team__items"> | ||
| <div class="team-item"> | ||
| <img src="./images/cto.png" alt="Young men wearing sunglasses" /> | ||
| <div class="team__content"> | ||
| <h4 class="team__item-title">CTO</h4> | ||
| <p class="team__item-name">Johnny B Good</p> | ||
| <p class="team__item-description">The brains behind the whole operation</p> | ||
| <div class="social-icons__container"> | ||
| <img src="./images/team-twitter.svg" alt="Twitter icon" /> | ||
| <img src="./images/team-facebook.svg" alt="Facebook icon" /> | ||
| <img src="./images/team-google.svg" alt="Google icon" /> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <div class="team-item"> | ||
| <img src="./images/ceo.png" alt="Younge, sad woman, portrait photo" /> | ||
| <div class="team__content"> | ||
| <h4 class="team__item-title">CEO</h4> | ||
| <p class="team__item-name">Roll Over Beethoven</p> | ||
| <p class="team__item-description">The one that puts it all together</p> | ||
| <div class="social-icons__container"> | ||
| <img src="./images/team-twitter.svg" alt="Twitter icon" /> | ||
| <img src="./images/team-facebook.svg" alt="Facebook icon" /> | ||
| <img src="./images/team-google.svg" alt="Google icon" /> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <div class="team-item"> | ||
| <img src="./images/cfo.png" alt="Young men wearing glasses" /> | ||
| <div class="team__content"> | ||
| <h4 class="team__item-title">CFO</h4> | ||
| <p class="team__item-name">Chuck Berry</p> | ||
| <p class="team__item-description">The guy with his hand on the wallet</p> | ||
| <div class="social-icons__container"> | ||
| <img src="./images/team-twitter.svg" alt="Twitter icon" /> | ||
| <img src="./images/team-facebook.svg" alt="Facebook icon" /> | ||
| <img src="./images/team-google.svg" alt="Google icon" /> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </section> | ||
|
|
||
| <section class="form__container"> | ||
| <h1 class="form__title">Download FREE!</h1> | ||
| <p class="form__description">Take it for a ride for any of your projects!</p> | ||
| <form method="post" action="template.php" class="email__form"> | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Na samej grafice tego już nie było :P
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Faktycznie, dopiero zwróciłam uwagę! Wzorowałam się na live preview, łatwiej mi tak jak można sobie "pochodzić" po stronie, zobaczyć efekty, choćby przypomnieć sobie linkowanie po ID na onepage żeby po kliknięciu nam się ładnie sunęło do sekcji. Podlinkowałeś w Readme link do projektu i założyłam z góry, że warto, czy to jest ok? :) |
||
| <input type="email" name="email" class="email__input" placeholder="Enter your email" /> | ||
| <button type="submit" class="btn__input">Download</button> | ||
| </form> | ||
| </section> | ||
|
|
||
| <footer class="footer__container"> | ||
| <div class="content-footer__container"> | ||
| <div class="footer__info"> | ||
| <p class="footer__text">A free template by</p> | ||
| <img src="./images/webscope.svg" alt="Webscope Logo" /> | ||
| </div> | ||
| <div class="social-icons__footer"> | ||
| <img src="./images/twitter.svg" alt="Twitter Icon" /> | ||
| <img src="./images/facebook.svg" alt="Facebook Icon" /> | ||
| </div> | ||
| </div> | ||
| </footer> | ||
| </main> | ||
| </body> | ||
| </html> | ||
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.
👍