Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="pl">
- <head>
- <title>Bootstrap</title>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <!-- import Bootstrap-->
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
- <!-- import fontAwesome -->
- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
- <!-- import the webpage's stylesheet -->
- <link rel="stylesheet" href="/style.css">
- <!-- import the webpage's javascript file -->
- <script src="/script.js" defer></script>
- </head>
- <body>
- <nav class="navbar navbar-expand-lg bg-dark navbar-dark sticky-top ">
- <a class="navbar-brand" href="#"> <img src="https://cdn.glitch.global/787ded1d-3d9d-402b-8208-95934d5344da/coding_giants_logo_EN.png?v=1703962053340" alt="Logo" style="width:60px;"></a>
- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
- <span class="navbar-toggler-icon"></span>
- </button>
- <div class="collapse navbar-collapse" id="collapsibleNavbar">
- <ul class="navbar-nav mr-auto">
- <li class="nav-item">
- <a class="nav-link active" href="#">Home page</a>
- </li>
- <li class="nav-item dropdown">
- <a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
- Courses
- </a>
- <div class="dropdown-menu">
- <a class="dropdown-item" href="#">Semester courses</a>
- <a class="dropdown-item" href="#">Online courses</a>
- <a class="dropdown-item" href="#">Additional courses</a>
- </div>
- </li>
- <li class="nav-item">
- <a class="nav-link" data-toggle="modal" data-target="#window" href="#">Travels</a>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="#">About us</a>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="#">Photos</a>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="#">Contact</a>
- </li>
- </ul>
- <form class="form-inline" >
- <input class="form-control mr-sm-2" type="text" placeholder="Search here">
- <button class="btn btn-success " type="submit">Search</button>
- </form>
- </div>
- </nav>
- <div class="modal fade" id="window">
- <div class="modal-dialog modal-dialog-scrollable modal-xl">
- <div class="modal-content">
- <div class="modal-header">
- <h4 class="modal-title">Giants travels</h4>
- <button type="button" class="close" data-dismiss="modal">×</button>
- </div>
- <div class="modal-body">
- <img src="https://cdn.glitch.global/787ded1d-3d9d-402b-8208-95934d5344da/giants_travels_EN.png?v=1703961648234">
- <h1>
- About us
- </h1>
- <h6>
- Passion is the key word for us - our motivation for action and discovery. Giants Travel was founded to create trips that combine fun with education of the highest quality.
- </h6>
- <p>
- For the benefit of the younger generation, we create camps that will broaden horizons and provide a place to acquire valuable skills. We are committed to developing potential, teaching through direct experience, where spontaneity and fun come first.
- </p>
- </div>
- <div class="modal-footer">
- <button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
- </div>
- </div>
- </div>
- </div>
- <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
- <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
- <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
- </body>
- </html>
Add Comment
Please, Sign In to add comment