1. Build Connections
a. Establish your html
files
b. link the CSS
files and the js
files
b.1 directly use bootstrap
, but still need to link
https://getbootstrap.com/docs/4.1/getting-started/introduction/
1 | <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous"> |
b.2 link CSS files
1 | <link rel="stylesheet" href="/css/master.css"> |
b.3 link js
files
1 | <script src="MyScript.js"></script> |