-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (53 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
62 lines (53 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Simple IG Photofeed with HTML CSS</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<header>
<h1><strong>Breathe Code Photo Feed</strong></h1>
</header>
<div class="container" </div>
<div class="photofeed-firstphoto"
<div>
<h4>My first photo</h4>
<span>09/30</span>
</div>
<div>
<img src="https://loremflickr.com/400/200"></img>
</div>
<div>
<p>This is my first photo of the feed. This is a multiline comment for testing purposes. I am learning to code with #BreatheCode</p>
</div>
<div class="photofeed-somecutething">
<h4>Some cute thing</h4>
<span>09/30</span>
</div>
<div>
<img src="">
</div>
<div>
<p>The internet approves this cute dog...#BreatheCode</p>
</div>
</div>
<div class="photofeed-computer">
<h4>Computer</h4>
<img src="">
<span>09/30</span>
<p>This is me waiting for the screen to show my awesome first website made at #BreatheCode</p>
</div>
<div class="photofeed-food">
<h4>And of course...food!</h4>
<img src="">
<span>09/30</span>
<p>Because no photo feed is cool without some food on it! #BreatheCode</p>
</div>
</div>
</div>
</body>
</html>