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) · 1.87 KB
/
index.html
File metadata and controls
56 lines (55 loc) · 1.87 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>
<head>
<meta charset="UTF-8" />
<title>title</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1>Instagram</h1>
</header>
<div class="main-container">
<div class="post">
<div class="title">
<strong>Delicious!</strong>
<strong>1/4</strong>
</div>
<img src="https://simshomekitchen.com/wp-content/uploads/2021/09/sweet-fried-plantains.jpg" class="picture"/>
<div>
<p class="caption">Belly full of plantain!</p>
</div>
</div>
<div class="post">
<div class="title">
<strong>Behold!</strong>
<strong>2/4</strong>
</div>
<img src="https://miro.medium.com/v2/resize:fit:1400/1*tMKkGydXuiOBOb15srANvg@2x.jpeg" class="picture"/>
<div>
<p class="caption">Such a captivating sunset!</p>
</div>
</div>
<div class="post">
<div class="title">
<strong>Soooooo cute</strong>
<strong>3/4</strong>
</div>
<img src="https://www.sfspca.org/wp-content/uploads/2022/11/Story-4-Kitten-Season.jpg" class="picture"/>
<div>
<p class="caption">The most adorable kitty ever!</p>
</div>
</div>
<div class="post">
<div class="title">
<strong>Camping</strong>
<strong>4/4</strong>
</div>
<img src="https://images.stockcake.com/public/c/c/9/cc98ba55-f6eb-4da5-afc7-b2a5571816bf_large/twilight-camping-adventure-stockcake.jpg" class="picture"/>
<div>
<p class="caption">A night to remeber</p>
</div>
</div>
</div>
</body>
</html>