+ 2
boostrap
what to do , to use boostrap in code. i copied from online and run but it didn't work as it should be. code is: <!DOCTYPE html> <html> <head> <title></title> </head> <body> <button type="button" class="btn btn-primary">Primary</button> <button type="button" class="btn btn-secondary">Secondary</button> <button type="button" class="btn btn-success">Success</button> <button type="button" class="btn btn-danger">Danger</button> <button type="button" class="btn btn-warning">Warning</button> <button type="button" class="btn btn-info">Info</button> <button type="button" class="btn btn-light">Light</button> <button type="button" class="btn btn-dark">Dark</button> <button type="button" class="btn btn-link">Link</button> </body> </html>
2 Answers
+ 2
You need to include the Bootstrap libraries in the <head> element for it to work. Take a look at this: https://www.sololearn.com/learn/1051/
+ 2
thank you rowsej .its really worked and how about to download process.