-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
84 lines (75 loc) · 2.72 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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,700|Roboto+Slab:300,400" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="reset.css" media="screen" />
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
</head>
<body>
<div id = "app">
<div class="headLine">
<img src="https://s3.amazonaws.com/codecademy-content/courses/learn-css-grid/project-iii/media/group-2.png" alt="logo">
<p> An architecture blog </p>
</div>
<!-- the grid -->
<div class="grid">
<!-- section 1 -->
<div class="box a">
<img src="https://s3.amazonaws.com/codecademy-content/courses/learn-css-grid/project-iii/media/pexels-big.jpg" alt="Repurposed Living">
</div>
<div class="box b title">
Repurposed Living
</div>
<div class="box c">
Bassicarella Architectes, Hamburg, Germany Repurposed Housing
</div>
<!-- section 2 -->
<div class="box d">
<img src = "https://s3.amazonaws.com/codecademy-content/courses/learn-css-grid/project-iii/media/pexels-2.jpg" alt="Angles de Pyramid Interiors" alt="Intricate Patter Play">
</div>
<div class="box e title">
Angles de Pyramid Interiors
</div>
<div class="box f">
Bassicarella Architectes,
Madrid, Spain
Office Building
</div>
<!-- section 3-->
<div class="box g">
<img src = "https://s3.amazonaws.com/codecademy-content/courses/learn-css-grid/project-iii/media/pexels-3.jpg" alt="Healing House Path">
</div>
<div class="box h title">
Intricate Patter Play
</div>
<div class="box i">
Bassicarella Architectes, Dubai, UAE Museum
</div>
<!-- section 4-->
<div class="box j">
<img src = "https://s3.amazonaws.com/codecademy-content/courses/learn-css-grid/project-iii/media/pexels-4.jpg" alt="Curved Perfection">
</div>
<div class="box k title">
Healing House Path
</div>
<div class="box l">
Bassicarella Architectes,
Beijing, China
Temple
</div>
<!-- section 5-->
<div class="box m">
<img src = "https://s3.amazonaws.com/codecademy-content/courses/learn-css-grid/project-iii/media/pexels-5.jpg" alt="Curved Perfection">
</div>
<div class="box n title">
Curved Perfection
</div>
<div class="box o">
Bassicarella Architectes,
Buenos Aires, Argentina
Condominium
</div>
</div>
</div>
</body>
</html>