12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <!-- swiper carosuel -->
- <link rel="stylesheet" href="./css/swiper-bundle.min.css">
- <!-- bootstrap css -->
- <link rel="stylesheet" href="./css/bootstrap.min.css">
- <!-- custom css -->
- <link rel="stylesheet" href="./css/style.css">
- <title>Home</title>
- </head>
- <body>
- <!-- bootstrap js -->
- <script src="./js/bootstrap.bundle.min.js"></script>
-
- <!-- swiper carosuel -->
- <script src="./js/swiper-bundle.min.js"></script>
- <!-- custom js -->
- <script src="./js/app.js"></script>
- </body>
- </html>
|