-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.35 KB
/
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
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<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>TOP projects</title>
</head>
<style>
body {
background-color: beige;
font-family: 'Times New Roman', Times, serif;
}
ol {
list-style-type:lower-latin;
font-size: 20px;
}
</style>
<body>
<h1>
A few practice projects completed by <a href="https://github.com/unicorks">@unicorks</a>
</h1>
<ol>
<li><a href="odin-recipes/index.html">Odin Recipes</a></li>
<li><a href="odin-flowers/index.html">Odin Flowers</a></li>
<li><a href="rock-paper-scissors/index.html">Rock, Paper and Scissors</a></li>
<li><a href="etch-a-sketch/index.html">Etch-a-Sketch</a></li>
<li><a href="calculator/index.html">Calculator</a></li>
<li><a href="https://replit.com/@unicorks/improved-tictactoe">Tic-Tac-Toe [CL]</a></li>
<li><a href="https://replit.com/@unicorks/mastermind">Mastermind [CL]</a></li>
<li><a href="https://replit.com/@unicorks/hangman">Hangman [CL]</a></li>
<li><a href="https://replit.com/@unicorks/connect4">Connect 4 [CL]</a></li>
<li><a href="https://replit.com/@unicorks/chess">Chess [CL]</a></li>
</ol>
</body>
</html>