-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (23 loc) · 782 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (23 loc) · 782 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap 4 Default HTML</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body>
<div class="container">
<h1>Components List</h1>
<p>This is the list of Components which are already finished.</p>
<p>✅ -> Done | ⚠️ -> Development | ⛔️ -> Error or Problems</p>
<ul>
<li><a href="alerts.html">Alerts</a> ✅</li>
<li><a href="badges.html">Badges</a> ✅</li>
<li><a href="buttons.html">Buttons</a> ️️️️️⚠️</li>
</ul>
</div>
</body>
</html>