-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 2.1 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<html>
<head>
<title>David Magnotti</title>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Y55LGP63JX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Y55LGP63JX');
</script>
<style type="text/css">
body
{
background-color: #ffffff;
color: #000000;
font-family: "San Serif", "Calibri";
}
h1#author
{
background-color: #333333;
border-radius: 10px;
color: #f0f0f0;
text-align: center;
padding: 5px;
}
h3#links
{
text-align: center;
}
h1#projects
{
border-radius: 10px;
background-color: #0055ee;
color: #ffffff;
width: 120px;
padding: 5px;
}
</style>
</head>
<body>
<h1 id="author">David Magnotti</h1>
<hr />
<h3 id="links"><a href="https://github.com/davidmagnotti/">GitHub</a> | <a href="https://www.linkedin.com/in/david-magnotti-a3697835">LinkedIn</a> | <a href="https://twitter.com/davidmagnotti">Twitter</a></h3>
<hr />
<h1 id="projects">Projects</h1>
<ul>
<li><a href="/cardodge.html">car battle</a> | Drive using tap/click or arrow keys, avoid getting hit, get boost to destroy enemy cars (using <a href="https://pixijs.com/">pixi-js</a>)</li>
<li><a href="/redlight.html">red light</a> | Drive to the finish line, don't go on red (using <a href="https://github.com/abagames/crisp-game-lib?tab=readme-ov-file">crisp-game-lib</a>)</li>
<li><a href="/dodge.html">dodge</a> | Tap to change slider direction and dodge (using <a href="https://github.com/abagames/crisp-game-lib?tab=readme-ov-file">crisp-game-lib</a>)</li>
<li><a href="/flyingship.html">flying ship</a> | keep the ship between the pillars (using <a href="https://github.com/abagames/crisp-game-lib?tab=readme-ov-file">crisp-game-lib</a>)</li>
<li><a href="/simonsays.html">simon says</a> | copy the pattern</li>
<li><a href="/speedybox.html">speedy box</a> | keep the box between the boundaries</li>
</ul>
</body>
</html>