-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bootstrap Concepts</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
</head>
<body>
<section class="container py-5">
<h2>Assignment Links:</h2>
<div class="d-flex flex-column fs-3 gap-5">
<a href="/bootstrap/assignment1/utilityclass.html">1. assignment 1</a>
<a href="/bootstrap/assignment2/basicform.html">2. assignment 2</a>
<a href="/bootstrap/assignment3/card.html">3. assignment 3</a>
<a href="/bootstrap/assignment4/navbar.html">4. assignment 4</a>
<a href="/bootstrap/assignment5/carousel.html">5. assignment 5</a>
<a href="/bootstrap/assignment6/portfolio.html"> 6. assignment 6</a>
</div>
</section>
</body>
</html>