-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patht-shirt.html
More file actions
159 lines (146 loc) · 6.15 KB
/
t-shirt.html
File metadata and controls
159 lines (146 loc) · 6.15 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<DOCTYPE! html>
<html>
<head>
<title>Code club T-shirt competition</title>
<style>
body {
font-family: sans-serif;
padding: 30px;
}
.header {
font-size: 36px;
font-weight: 700;
text-align: center;
padding: 30px;
color: white;
background-color: #60bf55;
}
div.gallery {
border: 1px solid #ccc;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
}
* {
box-sizing: border-box;
}
.responsive {
padding: 0 6px;
float: left;
width: 33.3333%;
}
@media only screen and (max-width: 700px) {
.responsive {
width: 33.3333%;
margin: 6px 0;
}
}
@media only screen and (max-width: 500px) {
.responsive {
width: 100%;
}
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
</style>
</head>
<body>
<div class="header">Code club T-shirt competition</div>
<p>Here are our entries for the code club T-shirt design competition:</p>
<div class="responsive">
<div class="gallery">
<a target="_blank"
href="https://github.com/CroydonLibraryCodeClub/StudentFiles/raw/master/Aarya/Aarya.jpg">
<img src="https://github.com/CroydonLibraryCodeClub/StudentFiles/raw/master/Aarya/Aarya.jpg"
alt="Aarya" width="400" height="564">
</a>
<div class="desc"><i>I chose my design because coding unlocks opportunities. Opportunities to go into
space, to make a robot and generally make life cool and fun. I love robotics and coding.</i>
<p>Aarya, 12</p>
</div>
</div>
</div>
<div class="responsive">
<div class="gallery">
<a target="_blank"
href="https://github.com/CroydonLibraryCodeClub/StudentFiles/raw/master/Kevin/Kevin.jpg">
<img src="https://github.com/CroydonLibraryCodeClub/StudentFiles/raw/master/Kevin/Kevin.jpg"
alt="Kevin" width="400" height="564">
</a>
<div class="desc"><i>I chose my design to be geometrical,because I wanted to make my T-shirt design more
creative and interesting to look at and I like making drawings on computers.</i>
<p>Kevin, 10</p>
</div>
</div>
</div>
<div class="responsive">
<div class="gallery">
<a target="_blank" href="https://github.com/CroydonLibraryCodeClub/StudentFiles/raw/master/Leo/Leo.jpg">
<img src="https://github.com/CroydonLibraryCodeClub/StudentFiles/raw/master/Leo/Leo.jpg" alt="Leo"
width="400" height="564">
</a>
<div class="desc"><i><br><br><br><br></i>
<p>Leo</p>
</div>
</div>
</div>
<div class="responsive">
<div class="gallery">
<a target="_blank"
href="https://github.com/CroydonLibraryCodeClub/StudentFiles/raw/master/Tristan/Tristan.jpg">
<img src="https://github.com/CroydonLibraryCodeClub/StudentFiles/raw/master/Tristan/Tristan.jpg"
alt="Leo" width="400" height="564">
</a>
<div class="desc"><i><br><br><br><br></i>
<p>Tristan</p>
</div>
</div>
</div>
<div class="responsive">
<div class="gallery">
<a target="_blank"
href="https://github.com/CroydonLibraryCodeClub/StudentFiles/raw/master/Caleb/Caleb.jpg">
<img src="https://github.com/CroydonLibraryCodeClub/StudentFiles/raw/master/Caleb/Caleb.jpg"
alt="Caleb" width="400" height="564">
</a>
<div class="desc"><i>My design is based off of an item from a video game which I love a lot. The game is
pokemon and it has the scratch green flag
In the middle where the button on the pokeball is. It means a lot to me because it fuses 2 of my
favourite things into one. I picked it because I watched a movie about pokemon plus I couldn't
wait to see everyone at code club.</i>
<p>Caleb, 11</p>
</div>
</div>
</div>
<div class="responsive">
<div class="gallery">
<a target="_blank"
href="https://github.com/CroydonLibraryCodeClub/StudentFiles/raw/master/Amogh/Amogh.jpg">
<img src="https://github.com/CroydonLibraryCodeClub/StudentFiles/raw/master/Amogh/Amogh.jpg"
alt="Amogh" width="400" height="564">
</a>
<div class="desc"><i>I decided to draw a computer as we were having fun with the computers and we needed
to have the code club sighn so I thought that drawing the sighn on the computer screen could be
a great idea and I coloured it in with my favourite of the colours we were aloud to use to make
it look really cool.</i>
<p>Amogh, 8</p>
</div>
</div>
</div>
<div class="clearfix"></div>
<div>
<p><a href="index.html">Home</a></p>
</div>
</body>
</html>