-
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.
- Loading branch information
1 parent
1309efc
commit f5d7bd6
Showing
3 changed files
with
117 additions
and
2 deletions.
There are no files selected for viewing
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 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 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,115 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Test App</title> | ||
<link rel="stylesheet" href="styles.css" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" /> | ||
|
||
<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=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet"> | ||
|
||
</head> | ||
<body> | ||
<nav class="navbar"> | ||
<div class="navbar__container"> | ||
<a href="/" id="navbar__logo"><i class="fa-solid fa-microchip"></i> Byte-Chip</a> | ||
<div class="navbar__toggle" id="mobile-menu"> | ||
<span class="bar"></span> | ||
<span class="bar"></span> | ||
<span class="bar"></span> | ||
</div> | ||
<ul class="navbar__menu"> | ||
<li class="navbar__item"> | ||
<a href="/" class="navbar__links">Home</a> | ||
</li> | ||
<li class="navbar__item"> | ||
<a href="/tech.html" class="navbar__links">Tech</a> | ||
</li> | ||
<li class="navbar__item"> | ||
<a href="/" class="navbar__links">Products</a> | ||
</li> | ||
<li class="navbar__btn"><a href="/" | ||
class="button">Sign Up</a></li> | ||
</ul> | ||
</div> | ||
</nav> | ||
|
||
<!--INTRO Section--> | ||
<div class="main"> | ||
<div class="main__container"> | ||
<div class="main__content"> | ||
<h1>NEXT GENERATION</h1> | ||
<h2>TECHNOLOGY</h2> | ||
<p>See what makes us different.</p> | ||
<button class="main__btn"><a | ||
href="/">Get Started</a></button> | ||
</div> | ||
<div class="main__img--container"> | ||
<img src="images/pic1.svg" alt="pic" id="main__img"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<!-- Services Section --> | ||
<div class="services"> | ||
<h1>What do we do?</h1> | ||
<div class="services__container"> | ||
<div class="services__card"> | ||
<h2>Experience the Future</h2> | ||
<p>AI Powered Technology</p> | ||
<button>Get Started</button> | ||
</div> | ||
<div class="services__card"> | ||
<h2>Are you Ready?</h2> | ||
<p>Take the Leap</p> | ||
<button>Get Started</button> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<!-- Footer Section--> | ||
<div class="footer__container"> | ||
<div class="footer__links"> | ||
<div class="footer__link--wrapper"> | ||
<div class="footer__link--items"> | ||
<h2>About us</h2> | ||
<a href="/">How it works</a> | ||
<a href="/">Testimonials</a> | ||
<a href="/">Careers</a> | ||
<a href="/">Investments</a> | ||
<a href="/">Terms of Services</a> | ||
</div> | ||
<div class="footer__link--items"> | ||
<h2>Contact us</h2> | ||
<a href="/">Contact</a> | ||
<a href="/">Support</a> | ||
<a href="/">Destinations</a> | ||
<a href="/">Sponsorships</a> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
<div class="social__media"> | ||
<div class="social__media--wrap"> | ||
<div class="footer__logo"> | ||
<a href="/" id="footer__logo"><i class="fa-solid fa-microchip"></i>Byte-Chip</a> | ||
<p class="website__right">Byte-Chip 2024. All rights reserved</p> | ||
<div class="social__icons"> | ||
<a href="/" class="social__icons--link" target="__blank"> | ||
<i class="fab-fa-facbook"></i> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
<script src="app.js"></script> | ||
</body> | ||
</html> |