How to add the bootstrap into HTML #8309
Replies: 5 comments 1 reply
-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> |
Beta Was this translation helpful? Give feedback.
-
Please insert this link in the head of HTML l <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>ike this |
Beta Was this translation helpful? Give feedback.
-
Please insert this link in the head of HTML l <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>ike this |
Beta Was this translation helpful? Give feedback.
-
Place the you'll find the resource helpful✨: |
Beta Was this translation helpful? Give feedback.
-
To add Bootstrap to a website, you need to download the latest version of Bootstrap from its official website and put the CSS and JavaScript files in the correct places in your HTML files. Here is a basic step-by-step process:
<head>
...
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
</head>
<body>
...
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
By following these steps, you can add Bootstrap to your HTML files and start using its powerful features to create attractive and responsive websites. |
Beta Was this translation helpful? Give feedback.
-
HI, Now I am working on HTML, so I need to add the bootstrap into HTML. I am trying again and again but I can't implemet that. Please let me know the solution. Thanks
Beta Was this translation helpful? Give feedback.
All reactions