-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 950 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Parent webpage</title>
</head>
<body>
<h1>Projects List</h1>
<ol>
<li>
<a href="./01-recipes-website/index.html" target="_blank">Recipes website</a>
</li>
<li>
<a href="./02-landing-page/index.html" target="_blank">Landing page</a>
</li>
<li>
<a href="./03-rock-paper-scissors/index.html" target="_blank">Rock, paper, scissors</a>
</li>
<li>
<a href="./04-etch-a-sketch/index.html" target="_blank">Etch a Sketch</a>
</li>
<li>
<a href="./05-simple-calculator/index.html" target="_blank">Simple Calculator</a>
</li>
<li>
<a href="./06-signup-form/index.html" target="_blank">Sign Up Form</a>
</li>
<li>
<a href="./07-admin-dashboard/index.html" target="_blank">Admin Dashboard</a>
</li>
</ol>
</body>
</html>