forked from rampatra/wedding-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CSS links in index.html to use CDN for Bootstrap, Animate.css,…
… and Font Awesome; removed local stylesheet references for improved loading performance and reliability. Ensured custom styles remain intact.
- Loading branch information
Showing
1 changed file
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"> | ||
|