You should include the design libraries in the header of the page after opening the <header> tag and before closing it </header>.
<header>
<link href="/bootstrap.rtl.min.css" rel="stylesheet" />
<link href="/dga.rtl.css" rel="stylesheet" />
</header>
You should include the programming libraries in the page content after opening the <body> tag and before closing it </body>, which is usually done at the end of the document.
<body>
<!-- Your Code Comes Here -->
<script type="text/javascript" src="/jquery-3.7.1.min.js"></script>
<script type="text/javascript" src="/popper.min.js"></script>
<script type="text/javascript" src="/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="/dga.js"></script>
</body>
You should include the design libraries in the header of the page after opening the <header> tag and before closing it </header>.
<header>
<link href="/bootstrap.min.css" rel="stylesheet" />
<link href="/dga.ltr.css" rel="stylesheet" />
</header>
You should include the programming libraries in the page content after opening the <body> tag and before closing it </body>, which is usually done at the end of the document.
<body>
<!-- Your Code Comes Here -->
<script type="text/javascript" src="/jquery-3.7.1.min.js"></script>
<script type="text/javascript" src="/popper.min.js"></script>
<script type="text/javascript" src="/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="/dga.js"></script>
</body>