View difference between Paste ID: 63sA2zWT and rsph9rbY
SHOW: | | - or go back to the newest paste.
1
<!DOCTYPE html>
2
<html lang="pl">
3
  <head>
4
    <title>Bootstrap</title>
5
    <meta charset="utf-8">
6
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
8
    
9
    <!-- import Bootstrap-->
10
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
11
    
12
     <!-- import fontAwesome --> 
13
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
14
    
15
    <!-- import the webpage's stylesheet -->
16
    <link rel="stylesheet" href="/style.css">
17
    
18
    <!-- import the webpage's javascript file -->
19
    <script src="/script.js" defer></script>
20
  </head>  
21
  <body>
22
    
23
    <nav class="navbar navbar-expand-lg bg-dark navbar-dark  sticky-top ">
24
  
25
<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>
26
  
27
  <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
28
    <span class="navbar-toggler-icon"></span>
29
  </button>
30
  
31
  
32
  
33
  <div class="collapse navbar-collapse" id="collapsibleNavbar">
34
  
35
  <ul class="navbar-nav mr-auto">
36
    <li class="nav-item">
37
      <a class="nav-link active" href="#">Home page</a>
38
    </li>
39
    
40
    <li class="nav-item dropdown">
41
      <a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
42
        Courses
43
      </a>
44
      <div class="dropdown-menu">
45
        <a class="dropdown-item" href="#">Semester courses</a>
46
        <a class="dropdown-item" href="#">Online courses</a>
47
        <a class="dropdown-item" href="#">Additional courses</a>
48
      </div>
49
    </li>
50
    
51
    
52
    <li class="nav-item">
53
      <a class="nav-link" data-toggle="modal" data-target="#window" href="#">Travels</a>
54
    </li>
55
    
56
    <li class="nav-item">
57
      <a class="nav-link" href="#">About us</a>
58
    </li>
59
    
60
    <li class="nav-item">
61
      <a class="nav-link" href="#">Photos</a>
62
    </li>
63
   
64
    <li class="nav-item">
65
      <a class="nav-link" href="#">Contact</a>
66
    </li>
67
 
68
   </ul>
69
     
70
     <form class="form-inline" >
71
    <input class="form-control mr-sm-2" type="text" placeholder="Search here">
72
    <button class="btn btn-success " type="submit">Search</button>
73
  </form>
74
    
75
  </div>
76
  
77
 
78
    
79
</nav>
80
    
81
   
82
    
83
   
84
85
86
87
88
<div class="modal fade" id="window">
89
  <div class="modal-dialog modal-dialog-scrollable modal-xl">
90
    <div class="modal-content">
91
92
93
94
      <div class="modal-header">
95
        <h4 class="modal-title">Giants travels</h4>
96
        <button type="button" class="close" data-dismiss="modal">&times;</button>
97
      </div>
98
99
100
      <div class="modal-body">
101
        <img src="https://cdn.glitch.global/787ded1d-3d9d-402b-8208-95934d5344da/giants_travels_EN.png?v=1703961648234">
102
        <h1>
103
          About us
104
        </h1>
105
        
106
        <h6>
107
          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.
108
        </h6>
109
        <p>
110
          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.
111
        </p>
112
      </div>
113
114
115
      <div class="modal-footer">
116
        <button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
117
      </div>
118
119
    </div>
120
  </div>
121
</div>
122
      
123
    
124
125
126
    
127
    
128
    
129
    
130
131
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
132
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
133
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
134
  </body>
135
</html>
136