Skip to content
Snippets Groups Projects
about.html 3.76 KiB
Newer Older
AB0410's avatar
AB0410 committed
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="icon" type="image/x-icon" href="./src/star.png">
        <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css">
        <link rel="stylesheet" href="about.css">
AB0410's avatar
AB0410 committed
        <link rel="stylesheet" href="navbar.css">
AB0410's avatar
AB0410 committed
        <title>About</title>
    </head>
<body>

    <!--------------------------------------------------------- NAVBAR  -->
    <nav class="navbar sticky-top navbar-expand-lg navbar-light bg-light">
        <div class="container-fluid">
            <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
                <span class="navbar-toggler-icon"></span>
            </button>
            <div class="collapse navbar-collapse" id="navbarNav">
                <ul class="navbar-nav">
                    <li class="nav-item">
                        <a class="nav-link" aria-current="page" href="index.html">HOME</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link active" href="about.html">ABOUT</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link" href="portfolio.html">PORTFOLIO</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link" href="contact.html">CONTACT</a>
                    </li>
                </ul>
AB0410's avatar
AB0410 committed
                <ul class="icons navbar-nav ml-auto">
                    <li class="nav-item">
                      <a class="nav-link" href="https://www.facebook.com/" target="_blank"><img src="src/facebook-svgrepo-com.svg" alt="Facebook"></a>
                    </li>
                    <li class="nav-item">
                      <a class="nav-link" href="https://www.instagram.com/" target="_blank"><img src="src/instagram-svgrepo-com.svg" alt="Instagram"></a>
                    </li>
                    <li class="nav-item">
                      <a class="nav-link" href="https://github.com/" target="_blank"><img src="src/github-svgrepo-com.svg" alt="Github"></a>
                    </li>
                  </ul>
AB0410's avatar
AB0410 committed
            </div>
        </div>
    </nav>



    <!------------------------------------------------------ ABOUT PAGE -->
    <div class="parent container-fluid">
AB0410's avatar
AB0410 committed
    <div class="container mt-5">
AB0410's avatar
AB0410 committed
        <h1 class="display-3">ABOUT ME</h1>
AB0410's avatar
AB0410 committed
        
        <div class="row">
                <div class="col-md-6">
                    <h3>What is lorem ipsum?</h3>
                    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. <img class="svgimg" src="src/check.svg" alt="check"> </p>
                </div>
                <div class="col-md-6">
                    <h3>Why do we use it?</h3>
                    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. <img class="svgimg" src="src/kone.svg" alt="monitor"></p>
                </div>

        </div>
    </div>
    </div>


            
</body>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.min.js"></script>
</html>