-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (66 loc) · 1.17 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<title>The works of Graham Graham</title>
<style>
html
{
background: #eee;
color: #333;
font-family: sans-serif;
}
a,
a:active
{
color: #333;
}
a:hover
{
color: #33e;
}
h1, label
{
text-transform: capitalize;
}
div
{
margin: 3em;
}
div img
{
max-width: 60vmin;
max-height: 60vmin;
}
div label
{
display: block;
}
</style>
</head>
<body>
<h1>The works of Graham Graham</h1>
<ul>
<li><a href=https://github.com/newChromantics/>open source</a></li>
</ul>
<div>
<label>Untitled - Acrylic Paint</label>
<img src="Paintings/LegoBikini.jpg" />
</div>
<div>
<label>SkyWalker minifig - Acrylic Paint</label>
<img src="Paintings/LegoSkywalker.jpg" />
</div>
<div>
<label>Tickets - Acrylic Paint</label>
<img src="Paintings/TicketsClipped.jpg" />
</div>
<div>
<label>Torn Jack - Acrylic Paint</label>
<img src="Paintings/Jack.jpg" />
</div>
<div>
<label>Lucky Card - Acrylic Paint</label>
<img src="Paintings/Lucky.jpg" />
</div>
</body>
</html>