forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (52 loc) · 1.9 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
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id="title">
<h1>Breathe Code Photo Feed</h1>
</div>
<div id="column">
<div id="headerone">
<h4>My first photo</h4>
<p class="date">12/14</p>
</div>
<div id="firstimg">
<img src="https://picsum.photos/500/300" />
</div>
<div id="firsttext">
<p>This is my first photo of the feed. This is a multi-line comment for testing purposes. I am learning code with #BreatheCode.</p>
</div>
<div id="headertwo">
<h4>Some cute thing</h4>
<p class="date">12/17</p>
</div>
<div id="secondimg">
<img src="https://picsum.photos/500/300?random=1" />
</div>
<div id="secondtext">
<p>The internet approves this cute dog... #BreatheCode</p>
</div>
<div id="headerthree">
<h4>There's a paparazzi around</h4>
<p class="date">12/17</p>
</div>
<div id="thirdimg">
<img src="https://picsum.photos/500/300?random=2" />
</div>
<div id="thirdtext">
<p>This is me waiting for the screen to show to show the awesome first website made at #BreatheCode</p>
</div>
<div id="headerfour">
<h4>And of course...food!</h4>
<p class="date">12/17</p>
</div>
<div id="fourthimg">
<img src="https://picsum.photos/500/300?random=3" />
</div>
<div id="fourthtext">
<p>Because no photo feed is cool without some food on it! #BreatheCode</p>
</div>
</div>
</body>
</html>