Skip to content

Commit

Permalink
Cleaned up some pathway issues
Browse files Browse the repository at this point in the history
  • Loading branch information
coreychristianclark committed Aug 6, 2023
1 parent 7e3494e commit 824ed0a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion files/css-files/creamyCajunStuffedSalmon.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
body {
background: url(https://images.unsplash.com/photo-1523878288860-7ad281611901?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1171&q=80) fixed;
background: url('/files/images/odin-recipes-background.jpg') fixed;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
Expand Down
4 changes: 2 additions & 2 deletions files/html-files/creamyCajunStuffedSalmon.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="/files/css-files/creamyCajunStuffedSalmon.css">
<script src="/files/script.js" defer></script>
<link rel="stylesheet" href="../css-files/creamyCajunStuffedSalmon.css">
<script src="../script.js" defer></script>

<title>Creamy Cajun Stuffed Salmon</title>
</head>
Expand Down
4 changes: 2 additions & 2 deletions files/html-files/elkBurgers.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="/files/css-files/elkBurgers.css">
<script src="/files/script.js" defer></script>
<link rel="stylesheet" href="../css-files/elkBurgers.css">
<script src="../script.js" defer></script>

<title>Elk Burgers</title>
</head>
Expand Down
4 changes: 2 additions & 2 deletions files/html-files/steakAndEggs.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="/files/css-files/steakAndEggs.css">
<script src="/files/script.js" defer></script>
<link rel="stylesheet" href="../css-files/steakAndEggs.css">
<script src="../script.js" defer></script>

<title>Steak and Eggs with Asparagus</title>
</head>
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="/files/css-files/index.css">
<script src="/files/script.js" defer></script>
<link rel="stylesheet" href="files/css-files/index.css">
<script src="files/script.js" defer></script>

<title>Odin Recipes</title>
</head>
Expand All @@ -19,7 +19,7 @@
<h1>Odin Recipes</h1>

<div class="homeImageContainer">
<img class="homeImage" src="/files/images/index-image.jpg" alt="Image of food being prepped">
<img class="homeImage" src="files/images/index-image.jpg" alt="Image of food being prepped">
</div>

<p class="introParagraph">
Expand Down

0 comments on commit 824ed0a

Please sign in to comment.