-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblend.html
More file actions
123 lines (105 loc) · 3 KB
/
Copy pathblend.html
File metadata and controls
123 lines (105 loc) · 3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Heather Yu</title>
<link rel="shortcut icon" type="image/x-icon" href="website-icon.ico">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap" rel="stylesheet">
<style type="text/css">body {font-family: 'Roboto Slab', serif;}</style>
<meta name="google-site-verification" content="B3rtaZg4eAO4mHvt1-5J_S1mZ7nuMKgmjD0RJZSCE2E" />
<style>
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: 24.99999%;
}
@media only screen and (max-width: 700px) {
.responsive {
width: 49.99999%;
margin: 6px 0;
}
}
@media only screen and (max-width: 500px) {
.responsive {
width: 100%;
}
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
</style>
</head>
<body>
<h2><a style="color:black; text-decoration: none;" href="https://hetd54.github.io">Heather Yu</a></h2>
<div class="responsive">
<div class="gallery">
<a target="_blank" href="donut-classic.png">
<img src="images/donut-classic.png" alt="Donut" width="600" height="400">
</a>
<div class="desc">Andrew Price's First Donut Tutorial. 2019.</div>
</div>
</div>
<div class="responsive">
<div class="gallery">
<a target="_blank" href="lowpoly-island.png">
<img src="images/lowpoly-island.png" alt="Poly-Island" width="600" height="400">
</a>
<div class="desc">Low-Poly Island Tutorial. 2019.</div>
</div>
</div>
<div class="responsive">
<div class="gallery">
<a target="_blank" href="blt-logo.png">
<img src="images/blt-logo.png" alt="BLT-Bubbles" width="600" height="400">
</a>
<div class="desc">BLT Lab Bubble Logo. 2020.</div>
</div>
</div>
<div class="responsive">
<div class="gallery">
<a target="_blank" href="donut-2-8.png">
<img src="images/donut-2-8.png" alt="Donut-2.8" width="600" height="400">
</a>
<div class="desc">Andrew Price's Second Donut Tutorial. 2020.</div>
</div>
</div>
<div class="responsive">
<div class="gallery">
<a target="_blank" href="bucket-truck.png">
<img src="images/bucket-truck.png" alt="Reasoning by Exclusion Study" width="600" height="400">
</a>
<div class="desc">Reasoning by Exclusion Study. 2020.</div>
</div>
</div>
<div class="responsive">
<div class="gallery">
<a target="_blank" href="blicket-detector.png">
<img src="images/blicket-detector.png" alt="Blicket Detector Study" width="600" height="400">
</a>
<div class="desc">Blicket Detector Study. 2021.</div>
</div>
</div>
<div class="clearfix"></div>
</body>
</html>