Skip to content

Commit b03d1b0

Browse files
committed
Add bootstrap
1 parent 3346238 commit b03d1b0

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

react-todos/public/index.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
@@ -24,6 +24,13 @@
2424
work correctly both with client-side routing and a non-root public URL.
2525
Learn how to configure a non-root public URL by running `npm run build`.
2626
-->
27+
<!-- Bootstrap Css -->
28+
<link
29+
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
30+
rel="stylesheet"
31+
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
32+
crossorigin="anonymous"
33+
/>
2734
<title>React App</title>
2835
</head>
2936
<body>
@@ -39,5 +46,13 @@
3946
To begin the development, run `npm start` or `yarn start`.
4047
To create a production bundle, use `npm run build` or `yarn build`.
4148
-->
49+
50+
<!-- Bootstrap Bundle with Popper -->
51+
52+
<script
53+
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
54+
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
55+
crossorigin="anonymous"
56+
></script>
4257
</body>
4358
</html>

0 commit comments

Comments
 (0)