Skip to content

Commit

Permalink
links corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
LesiaUKR committed Oct 19, 2023
1 parent 0fcfb7e commit 0d2290d
Show file tree
Hide file tree
Showing 17 changed files with 11 additions and 191 deletions.
17 changes: 6 additions & 11 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,16 @@
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Homework 6</title>
<title>Homework 14</title>
<link rel="stylesheet" href="css/common.css" />
</head>
<body>
<ul>
<li><a href="task-01.html">Task 1</a></li>
<li><a href="task-02.html">Task 2</a></li>
<li><a href="task-03.html">Task 3</a></li>
<li><a href="task-04.html">Task 4</a></li>
<li><a href="task-05.html">Task 5</a></li>
<li><a href="task-06.html">Task 6</a></li>
<li><a href="task-07.html">Task 7</a></li>
<li><a href="task-08.html">Task 8</a></li>
<li><a href="task-09.html">Task 9</a></li>
<li><a href="task-10.html">Task 10 (optional)</a></li>
<li><a href="./partials/task-01.html">Task 1</a></li>
<li><a href="./partials/task-02.html">Task 2</a></li>
<li><a href="./partials/task-03.html">Task 3</a></li>
<li><a href="./partials/task-04.html">Task 4</a></li>
<li><a href="./partials/task-05.html">Task 5</a></li>
</ul>
</body>
</html>
1 change: 0 additions & 1 deletion src/js/task-02.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ const listItemMarkup = () => {
const listItem = document.createElement("li");
listItem.classList.add("item");
listItem.textContent = ingredients[i];
// console.log(listItem);
list.appendChild(listItem);
}
};
Expand Down
Empty file removed src/js/task-06.js
Empty file.
Empty file removed src/js/task-07.js
Empty file.
1 change: 0 additions & 1 deletion src/js/task-08.js

This file was deleted.

5 changes: 0 additions & 5 deletions src/js/task-09.js

This file was deleted.

5 changes: 0 additions & 5 deletions src/js/task-10.js

This file was deleted.

2 changes: 1 addition & 1 deletion src/task-01.html → src/partials/task-01.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link rel="stylesheet" href="css/common.css" />
</head>
<body>
<p><a href="index.html">Go back</a></p>
<p><a href="../index.html">Go back</a></p>

<ul id="categories">
<li class="item">
Expand Down
2 changes: 1 addition & 1 deletion src/task-02.html → src/partials/task-02.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</style>
</head>
<body>
<p><a href="index.html">Go back</a></p>
<p><a href="../index.html">Go back</a></p>

<ul id="ingredients"></ul>

Expand Down
2 changes: 1 addition & 1 deletion src/task-03.html → src/partials/task-03.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link rel="stylesheet" href="css/common.css" />
</head>
<body>
<p><a href="index.html">Go back</a></p>
<p><a href="../index.html">Go back</a></p>

<ul class="gallery"></ul>

Expand Down
2 changes: 1 addition & 1 deletion src/task-04.html → src/partials/task-04.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link rel="stylesheet" href="css/common.css" />
</head>
<body>
<p><a href="index.html">Go back</a></p>
<p><a href="../index.html">Go back</a></p>

<div id="counter">
<button type="button" data-action="decrement">-1</button>
Expand Down
2 changes: 1 addition & 1 deletion src/task-05.html → src/partials/task-05.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link rel="stylesheet" href="css/common.css" />
</head>
<body>
<p><a href="index.html">Go back</a></p>
<p><a href="../index.html">Go back</a></p>

<input type="text" id="name-input" placeholder="Please enter your name" />
<h1>Hello, <span id="name-output">Anonymous</span>!</h1>
Expand Down
35 changes: 0 additions & 35 deletions src/task-06.html

This file was deleted.

19 changes: 0 additions & 19 deletions src/task-07.html

This file was deleted.

45 changes: 0 additions & 45 deletions src/task-08.html

This file was deleted.

41 changes: 0 additions & 41 deletions src/task-09.html

This file was deleted.

23 changes: 0 additions & 23 deletions src/task-10.html

This file was deleted.

0 comments on commit 0d2290d

Please sign in to comment.