-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdaily_life.html
53 lines (49 loc) · 1.88 KB
/
daily_life.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daily Life Photo</title>
<link rel="stylesheet" href="./styles/simple-grid.css">
<link rel="stylesheet" href="./styles/daily_life.css">
</head>
<body>
<div class="header">
<h1>Daily Life</h1>
</div>
<hr class="fancy_hr">
<div class="container">
<div class="row">
<div class="col-4">
<img src="./assets/SF_MOMA/girls_on_lawn.JPG" alt="two girls lying on the lawn in sunlight">
</div>
<div class="col-4">
<img src="./assets/SF_MOMA/east_asian_lib.JPG" alt="a girl sitting outside of the east asian library at UC Berkeley">
</div>
<div class="col-4">
<img src="./assets/SF_MOMA/deli_shop_sign.JPG" alt="the shop sign of a deli on Shattuck Avenue">
</div>
</div>
<div class="row">
<div class="col-4">
<img src="./assets/SF_MOMA/beside_sunlight.JPG" alt="an art on a white wall">
</div>
<div class="col-4">
<img src="./assets/SF_MOMA/boys_watch_art.JPG" alt="two boys sat watching art at San Francisco MOMA">
</div>
<div class="col-4">
<img src="./assets/SF_MOMA/eyehole.JPG" alt="a close shot through the eyehole of a cardboard">
</div>
</div>
<div class="row">
<div class="col-4">
<img src="./assets/SF_MOMA/sculpture.JPG" alt="a sculpture art">
</div>
<div class="col-4">
<img src="./assets/SF_MOMA/self_portrait.JPG" alt="me taking photo of myself in the mirror">
</div>
</div>
</div>
</body>
</html>