Skip to content
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

IamAdoga #856

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

IamAdoga #856

wants to merge 1 commit into from

Conversation

IamAdoga01
Copy link

<title>My Landing Page</title>
MyBrand
<!-- Hero Section -->
<section id="home" class="hero">
    <h1>Welcome to My Landing Page</h1>
    <p>Discover amazing services and solutions tailored just for you!</p>
    <button onclick="scrollToSection('about')">Learn More</button>
</section>

<!-- About Section -->
<section id="about" class="about">
    <h2>About Us</h2>
    <p>We are a team of passionate individuals dedicated to providing top-notch services.</p>
</section>

<!-- Services Section -->
<section id="services" class="services">
    <h2>Our Services</h2>
    <div class="service-card">
        <h3>Service 1</h3>
        <p>Description of Service 1</p>
    </div>
    <div class="service-card">
        <h3>Service 2</h3>
        <p>Description of Service 2</p>
    </div>
    <div class="service-card">
        <h3>Service 3</h3>
        <p>Description of Service 3</p>
    </div>
</section>

<!-- Contact Section -->
<section id="contact" class="contact">
    <h2>Contact Us</h2>
    <form id="contactForm">
        <input type="text" id="name" placeholder="Your Name" required>
        <input type="email" id="email" placeholder="Your Email" required>
        <textarea id="message" placeholder="Your Message" required></textarea>
        <button type="submit">Send Message</button>
    </form>
</section>

<!-- Footer Section -->
<footer>
    <p>&copy; 2023 MyBrand. All rights reserved.</p>
</footer>

<script src="script.js"></script>

Summary

Changes

Closes:

Task list

  • For workflow changes, I have verified the Actions workflows function as expected.
  • For content changes, I have reviewed the style guide.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Landing Page</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <!-- Header Section -->
    <header>
        <nav>
            <div class="logo">MyBrand</div>
            <ul class="nav-links">
                <li><a href="#home">Home</a></li>
                <li><a href="#about">About</a></li>
                <li><a href="#services">Services</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>

    <!-- Hero Section -->
    <section id="home" class="hero">
        <h1>Welcome to My Landing Page</h1>
        <p>Discover amazing services and solutions tailored just for you!</p>
        <button onclick="scrollToSection('about')">Learn More</button>
    </section>

    <!-- About Section -->
    <section id="about" class="about">
        <h2>About Us</h2>
        <p>We are a team of passionate individuals dedicated to providing top-notch services.</p>
    </section>

    <!-- Services Section -->
    <section id="services" class="services">
        <h2>Our Services</h2>
        <div class="service-card">
            <h3>Service 1</h3>
            <p>Description of Service 1</p>
        </div>
        <div class="service-card">
            <h3>Service 2</h3>
            <p>Description of Service 2</p>
        </div>
        <div class="service-card">
            <h3>Service 3</h3>
            <p>Description of Service 3</p>
        </div>
    </section>

    <!-- Contact Section -->
    <section id="contact" class="contact">
        <h2>Contact Us</h2>
        <form id="contactForm">
            <input type="text" id="name" placeholder="Your Name" required>
            <input type="email" id="email" placeholder="Your Email" required>
            <textarea id="message" placeholder="Your Message" required></textarea>
            <button type="submit">Send Message</button>
        </form>
    </section>

    <!-- Footer Section -->
    <footer>
        <p>&copy; 2023 MyBrand. All rights reserved.</p>
    </footer>

    <script src="script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant