A portfolio website designed to be sold on ThemeForest - (portfolio-detail.html) Part 3

Let's create another page for this portfolio theme. Below is an example of a `portfolio-detail.html` page that showcases a detailed view of a specific portfolio item:


```html

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta name="description" content="Portfolio detail page for a creative work">

    <title>Portfolio Detail | MyPortfolio</title>

    <link rel="stylesheet" href="styles.css">

</head>

<body>

    <!-- Navigation -->

    <nav class="navbar">

        <div class="container">

            <a href="#" class="logo">MyPortfolio</a>

            <ul class="nav-menu">

                <li><a href="index.html">Home</a></li>

                <li><a href="#portfolio">Portfolio</a></li>

                <li><a href="#about">About</a></li>

                <li><a href="#contact">Contact</a></li>

            </ul>

        </div>

    </nav>


    <!-- Portfolio Detail Section -->

    <section class="portfolio-detail-section">

        <div class="container">

            <div class="portfolio-detail">

                <img src="images/project-detail.jpg" alt="Project Detail Image">

                <div class="portfolio-detail-info">

                    <h2>Project Title</h2>

                    <p><strong>Category:</strong> Web Design</p>

                    <p><strong>Client:</strong> Client Name</p>

                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla convallis libero id libero pulvinar.</p>

                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium.</p>

                    <a href="#" class="btn">Visit Website</a>

                </div>

            </div>

        </div>

    </section>


    <!-- Footer -->

    <footer class="footer">

        <div class="container">

            <p>&copy; 2024 MyPortfolio. All rights reserved.</p>

            <ul class="social-links">

                <li><a href="#"><img src="images/icon-facebook.svg" alt="Facebook"></a></li>

                <li><a href="#"><img src="images/icon-twitter.svg" alt="Twitter"></a></li>

                <li><a href="#"><img src="images/icon-instagram.svg" alt="Instagram"></a></li>

                <li><a href="#"><img src="images/icon-linkedin.svg" alt="LinkedIn"></a></li>

            </ul>

        </div>

    </footer>


    <!-- JavaScript -->

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

</body>

</html>

```


### CSS (styles.css)


Ensure your `styles.css` includes styles for the `.portfolio-detail-section` and `.portfolio-detail` classes, along with any additional styles needed for the detail page layout and content.


### Images


Replace `images/project-detail.jpg` with the actual image for the portfolio item detail view.


### Instructions


1. **Content**: Replace placeholder text (`Project Title`, `Category`, `Client Name`, Lorem Ipsum text) with actual content relevant to the portfolio item.

   

2. **Navigation**: Update navigation links (`Home`, `Portfolio`, `About`, `Contact`) as needed to ensure consistent navigation across your theme.


3. **Links**: Ensure any links (`Visit Website` button) point to the appropriate destinations or placeholders.


4. **Integration**: Integrate this page into your existing theme structure, ensuring visual and functional consistency with the `index.html` and other pages.


This `portfolio-detail.html` page provides a detailed view of a specific portfolio item, enhancing the user experience by providing more information about the showcased work. Adjust and customize according to your specific design and portfolio item requirements.

Post a Comment (0)
Previous Post Next Post