As someone who is not a front-end developer and is starting to build a web app from scratch, I decided to download a bootstrap template and integrate it into a simple Angular project (generated by Angular CLI).
Here's what I did:
I copied the index.html file of the template into app.component.html:
app.component.html
<!DOCTYPE HTML>
<!--
Parallelism by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<!-- code block continues... -->
I also made sure to copy the assets of the template into the assets folder and adjust the file paths accordingly.
This method seems to be somewhat functional.
Now, here are my inquiries:
- Could integrating a bootstrap template in this manner lead to errors?
- Am I following the correct procedure?
- If not, could you point out where I may be going wrong?