-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.html
More file actions
63 lines (58 loc) · 2.76 KB
/
task.html
File metadata and controls
63 lines (58 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JS Course | JS Tasks</title>
<!-- External CSS -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<!-- header -->
<div class="header">
<h1>JavaScript Course</h1>
<a
href="https://github.com/er-arunkumarselvam/JavaScript-Course"
target="_blank"
><svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
>
<path
fill="currentColor"
d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5c.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34c-.46-1.16-1.11-1.47-1.11-1.47c-.91-.62.07-.6.07-.6c1 .07 1.53 1.03 1.53 1.03c.87 1.52 2.34 1.07 2.91.83c.09-.65.35-1.09.63-1.34c-2.22-.25-4.55-1.11-4.55-4.92c0-1.11.38-2 1.03-2.71c-.1-.25-.45-1.29.1-2.64c0 0 .84-.27 2.75 1.02c.79-.22 1.65-.33 2.5-.33c.85 0 1.71.11 2.5.33c1.91-1.29 2.75-1.02 2.75-1.02c.55 1.35.2 2.39.1 2.64c.65.71 1.03 1.6 1.03 2.71c0 3.82-2.34 4.66-4.57 4.91c.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2Z"
/></svg><span>Github</span></a
>
</div>
<!-- Topics -->
<div class="menu">
<ul class="menu-item">
<li class="menu-list"><a href="./index.html" class="menu-link">JS Topics</a></li>
<li class="menu-list"><a href="./task.html" class="menu-link active">JS Tasks</a></li>
</ul>
</div>
<div class="topic-content" id="task-content">
<table>
<thead>
<th>Task.No</th>
<th>Task Name</th>
<th>Topic Name</th>
</thead>
<tr>
<td>1</td>
<td><a href="https://github.com/er-arunkumarselvam/JavaScript-Course/blob/main/JS%20Course/assets/js/tasks/task1.js" target="_blank">Mobile Suggestion</a></td>
<td><a href="https://github.com/er-arunkumarselvam/JavaScript-Course/blob/main/JS%20Course/assets/js/conditionalstatements.js" target="_blank" title="If, ElseIf, Switch Case">Conditional Statement</a></td>
</tr>
<tr>
<td>2</td>
<td><a href="https://github.com/er-arunkumarselvam/JavaScript-Course/blob/main/JS%20Course/assets/js/tasks/task2.js" target="_blank">Vegetable List Checking</a></td>
<td><a href="https://github.com/er-arunkumarselvam/JavaScript-Course/blob/main/JS%20Course/assets/js/arraydetails.js" target="_blank" title="Adding Array Element, Finding Array Element">Arrays</a></td>
</tr>
</table>
</div>
</div>
</body>
</html>