forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (55 loc) · 2.25 KB
/
Copy pathindex.html
File metadata and controls
56 lines (55 loc) · 2.25 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
<!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>Photo Feed</title>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<div class="main-container">
<div class="header">
<h1>Breathe Code Photo Feed</h1>
</div>
<div class="container">
<div class="post-container">
<div class="photo-head">
<h4 class="photo-title"> My first photo</h4>
<p class="photo-date">12/12</p>
</div>
<div class="photo-image">
<img src="/futuristic-city.jpg">
</div>
<div class="photo-description">
<p> This is my first photo of feed. this is a multi comment fotr testing purpose. I am learning to code with <span class="hashtag">#BreatheCode</span></p>
</div>
</div>
<div class="post-container">
<div class="photo-head">
<h4 class="photo-title"> Another Post</h4>
<p class="photo-date">12/17</p>
</div>
<div class="photo-image">
<img src="/smart-city.jpg">
</div>
<div class="photo-description">
<p> This is my first photo of feed. this is a multi comment fotr testing purpose. I am learning to code with <span class="hashtag">#BreatheCode</span></p>
</div>
</div>
<div class="post-container">
<div class="photo-head">
<h4 class="photo-title"> The Last Post</h4>
<p class="photo-date">12/22</p>
</div>
<div class="photo-image">
<img src="/media-streaming.jpg">
</div>
<div class="photo-description">
<p> This is my first photo of feed. this is a multi comment fotr testing purpose. I am learning to code with <span class="hashtag">#BreatheCode</span></p>
</div>
</div>
</div>
</div>
</body>
</html>