-
Notifications
You must be signed in to change notification settings - Fork 6
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
5355771
commit b20c074
Showing
18 changed files
with
1,279 additions
and
285 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
File renamed without changes.
File renamed without changes.
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,94 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Modern Landing Page</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<nav class="navbar"> | ||
<div class="logo">Brand</div> | ||
<ul class="nav-links"> | ||
<li><a href="#home">Home</a></li> | ||
<li><a href="#features">Features</a></li> | ||
<li><a href="#contact">Contact</a></li> | ||
</ul> | ||
<div class="hamburger"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
</nav> | ||
</header> | ||
|
||
<main> | ||
<section id="home" class="hero"> | ||
<div class="hero-content"> | ||
<h1>Welcome to the Future</h1> | ||
<p>Experience innovation at its finest</p> | ||
<button class="cta-button">Get Started</button> | ||
</div> | ||
</section> | ||
|
||
<section id="testimonials" class="testimonials"> | ||
<h2>What Our Clients Say</h2> | ||
<div class="testimonial-grid"> | ||
<div class="testimonial-card"> | ||
<div class="testimonial-avatar">👤</div> | ||
<p class="testimonial-text">"Amazing service! The team went above and beyond."</p> | ||
<p class="testimonial-author">- John Doe, CEO</p> | ||
</div> | ||
<div class="testimonial-card"> | ||
<div class="testimonial-avatar">👤</div> | ||
<p class="testimonial-text">"Incredible results. Would highly recommend!"</p> | ||
<p class="testimonial-author">- Jane Smith, Designer</p> | ||
</div> | ||
<div class="testimonial-card"> | ||
<div class="testimonial-avatar">👤</div> | ||
<p class="testimonial-text">"Professional and efficient service."</p> | ||
<p class="testimonial-author">- Mike Johnson, Developer</p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="features" class="features"> | ||
<h2>Our Features</h2> | ||
<div class="feature-grid"> | ||
<div class="feature-card"> | ||
<div class="feature-icon">🚀</div> | ||
<h3>Fast Performance</h3> | ||
<p>Lightning-quick loading times</p> | ||
</div> | ||
<div class="feature-card"> | ||
<div class="feature-icon">🎨</div> | ||
<h3>Beautiful Design</h3> | ||
<p>Stunning visuals and animations</p> | ||
</div> | ||
<div class="feature-card"> | ||
<div class="feature-icon">📱</div> | ||
<h3>Responsive</h3> | ||
<p>Works on all devices</p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="contact" class="contact"> | ||
<h2>Contact Us</h2> | ||
<form id="contact-form"> | ||
<input type="text" placeholder="Name" required> | ||
<input type="email" placeholder="Email" required> | ||
<textarea placeholder="Message" required></textarea> | ||
<button type="submit">Send Message</button> | ||
</form> | ||
</section> | ||
</main> | ||
|
||
<footer> | ||
<p>© 2024 Brand. All rights reserved.</p> | ||
</footer> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.