-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.html
43 lines (39 loc) · 1.6 KB
/
resources.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Level Up: RESOURCES</title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<meta name="description" content="Learn to Code">
</head>
<body>
<header>
<h1>RESOURCES</h1>
</header>
<main>
<article>
<h2>Introduction to Coding resorces</h2>
<p>Coding is the process of creating software, websites, and other digital applications using programming
languages. At My Coding Site, we provide tutorials and resources to help you learn to code.</p>
</article>
<article>
<h2>Latest resources for reading</h2>
<ul>
<li><a href="https://www.geeksforgeeks.org/what-is-array/">arrays</a></li>
<li><a href="https://www.geeksforgeeks.org/string-data-structure/">string</a></li>
<li><a href="https://www.geeksforgeeks.org/data-structures/linked-list/">linkedlist</a></li>
<li><a href="https://www.geeksforgeeks.org/binary-search/">binary search</a></li>
<li><a
href="https://www.geeksforgeeks.org/introduction-to-recursion-data-structure-and-algorithm-tutorials/">recursion</a>
</li>
<li><a
href="https://www.geeksforgeeks.org/introduction-to-tree-data-structure-and-algorithm-tutorials/">tree</a>
</li>
<li><a href="https://www.geeksforgeeks.org/dynamic-programming/">dymamic programming</a></li>
</ul>
</article>
</main>
<footer>
<p>© My Coding Site 2023</p>
</footer>
</body>
</html>