First commit
This commit is contained in:
125
Lab 3/index.html
Executable file
125
Lab 3/index.html
Executable file
@@ -0,0 +1,125 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Bootstrap demo</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
||||
<link rel="icon" href="https://fav.farm/🕸️">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-md bg-body-primary">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="#">Navbar</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo02"
|
||||
aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" aria-current="page" href="#">Home</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">Link</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link disabled" aria-disabled="true">Disabled</a>
|
||||
</li>
|
||||
</ul>
|
||||
<form class="d-flex" role="search" data-bs-theme="light">
|
||||
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
|
||||
<button class="btn btn-light" type="submit">Search</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<main class="col-md-8">
|
||||
<h1>Bootstrap demo</h1>
|
||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet asperiores neque quis ut ipsa
|
||||
nostrum
|
||||
repellat itaque, ullam delectus recusandae eum repellendus necessitatibus, corporis deleniti
|
||||
placeat. Ipsam
|
||||
rerum nihil enim.</p>
|
||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa possimus dolorum aliquam nisi
|
||||
praesentium
|
||||
adipisci aliquid. Provident quasi, unde dignissimos, repellat eaque voluptas id sapiente porro
|
||||
necessitatibus pariatur, eum culpa?</p>
|
||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nihil assumenda velit, repudiandae nulla
|
||||
excepturi
|
||||
ea voluptatibus odit at temporibus nam beatae perferendis non corporis! Nam error fugiat earum
|
||||
commodi
|
||||
similique.</p>
|
||||
</main>
|
||||
<aside class="col-md-4 d-none d-sm-block">
|
||||
<div class="accordion" id="accordionExample">
|
||||
<div class="accordion-item">
|
||||
<h2 class="accordion-header">
|
||||
<button class="accordion-button" type="button" data-bs-toggle="collapse"
|
||||
data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
|
||||
Accordion Item #1
|
||||
</button>
|
||||
</h2>
|
||||
<div id="collapseOne" class="accordion-collapse collapse show"
|
||||
data-bs-parent="#accordionExample">
|
||||
<div class="accordion-body">
|
||||
<strong>This is the first item's accordion body.</strong> It is shown by default, until
|
||||
the collapse plugin adds the appropriate classes that we use to style each element.
|
||||
These classes control the overall appearance, as well as the showing and hiding via CSS
|
||||
transitions. You can modify any of this with custom CSS or overriding our default
|
||||
variables. It's also worth noting that just about any HTML can go within the
|
||||
<code>.accordion-body</code>, though the transition does limit overflow.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="accordion-item">
|
||||
<h2 class="accordion-header">
|
||||
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
|
||||
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
|
||||
Accordion Item #2
|
||||
</button>
|
||||
</h2>
|
||||
<div id="collapseTwo" class="accordion-collapse collapse" data-bs-parent="#accordionExample">
|
||||
<div class="accordion-body">
|
||||
<strong>This is the second item's accordion body.</strong> It is hidden by default,
|
||||
until the collapse plugin adds the appropriate classes that we use to style each
|
||||
element. These classes control the overall appearance, as well as the showing and hiding
|
||||
via CSS transitions. You can modify any of this with custom CSS or overriding our
|
||||
default variables. It's also worth noting that just about any HTML can go within the
|
||||
<code>.accordion-body</code>, though the transition does limit overflow.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="accordion-item">
|
||||
<h2 class="accordion-header">
|
||||
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
|
||||
data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
|
||||
Accordion Item #3
|
||||
</button>
|
||||
</h2>
|
||||
<div id="collapseThree" class="accordion-collapse collapse" data-bs-parent="#accordionExample">
|
||||
<div class="accordion-body">
|
||||
<strong>This is the third item's accordion body.</strong> It is hidden by default, until
|
||||
the collapse plugin adds the appropriate classes that we use to style each element.
|
||||
These classes control the overall appearance, as well as the showing and hiding via CSS
|
||||
transitions. You can modify any of this with custom CSS or overriding our default
|
||||
variables. It's also worth noting that just about any HTML can go within the
|
||||
<code>.accordion-body</code>, though the transition does limit overflow.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
|
||||
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
|
||||
crossorigin="anonymous"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user