generated from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 979 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Instagram Feed</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div>
<header>
<div class="container">
<h1>Breathe Code Photo Feed</h1>
</div>
</header>
<div class="container">
<div class="post">
<div class="post-header">
<div>
<div class="title" >First photo <div class="date">12/14</div> </div>
</div>
</div>
<div>
<img src="https://picsum.photos/400/200" />
</div>
<div>
<p>This is my first photo of the feed. This is a multi-line comment for testing purposes. I am learning to code with <strong>#BreatheCode</strong></p>
</div>
</div>
</div>
</div>
</body>
</html>