Skip to content

Commit

Permalink
Update CSS links in index.html to use CDN for Bootstrap, Animate.css,…
Browse files Browse the repository at this point in the history
… and Font Awesome; removed local stylesheet references for improved loading performance and reliability. Ensured custom styles remain intact.
  • Loading branch information
yomero243 committed Dec 9, 2024
1 parent 7fc233f commit eda2ab1
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,18 @@
}
</script>

<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.css">
<link rel="stylesheet" href="css/flexslider.css">
<link rel="stylesheet" href="css/styles.min.css">
<link rel="stylesheet" href="css/queries.css">
<link rel="stylesheet" href="node_modules/animate.css/animate.min.css" onerror="loadCssFromCDN('animate.css')">
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css" onerror="loadCssFromCDN('font-awesome.css')">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">

<!-- Animate.css -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css" rel="stylesheet">

<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

<!-- Tus estilos personalizados -->
<link rel="stylesheet" href="/css/styles.min.css">
<link rel="stylesheet" href="/css/queries.css">
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body id="top">
Expand Down

0 comments on commit eda2ab1

Please sign in to comment.