-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (59 loc) · 1.47 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
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DP</title>
<link href="https://fonts.googleapis.com/css2?family=Iceland&family=Montserrat&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Montserrat', sans-serif;
}
h1, h2 {
font-family: 'Iceland', sans-serif;
margin: 0;
}
h1 {
color: rgb(47, 47, 48);
font-size: 1em;
}
h2 {
color: darkgray;
font-size: 1em;
}
h3 {
font-size: 1em;
margin:1em 0 0;
}
ul {
padding: 0 0 0 1em;
margin: 0.25em 0 0 0;
}
p, li {
font-size: 0.75em;
}
</style>
</head>
<body>
<h1>David P.</h1>
<h2>Recent Projects</h2>
<h3>Accessible Games</h3>
<ul>
<li>
<a href="https://word-grid-generator.now.sh/" target="_blank">Word Grid Generator</a>
[<a href="https://github.com/davipinc/word-grid-generator">source</a>]
</li>
<li>
<a href="https://dalt-spelling.vercel.app/" target="_blank">Accessible Spelling Test</a>
[<a href="https://github.com/davipinc/simple-quiz-snowpack">source</a>]
</li>
</ul>
<h3>Music</h3>
<ul>
<li>Curium (UK) albums
[<a href="https://open.spotify.com/artist/3D4h5mDU4xsMxbaZRurVrh" target="_blank">Spotify</a>]
[<a href="https://soundcloud.com/paledavid" target="_blank">Soundcloud</a>]
</li>
</ul>
</body>
</html>