generated from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
73 lines (71 loc) · 3.37 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Instagram</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div>
<header>
<div class="container">
<h1>BreatheCode Photo Feed</h1>
</div>
</header>
<div class="container">
<div class="Post">
<div class="Post-header">
<div>
<h2>First Photo</h2>
</div>
<div>
<span>12/14</span>
</div>
</div>
<div>
<img src="https://phantom-marca.unidadeditorial.es/5e05e53e096131758fbad1c4d4cf6332/resize/828/f/jpg/assets/multimedia/imagenes/2024/03/21/17110328614910.jpg"></img>
</div>
<div>
<p>This is my First photo of the feed. In this photo shows the entire grid of driver of the 2024 season. 22 riders fighting for the maximum glory of motorcycling.(Iam learning to code with)<strong>#Breathecode</strong></p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="Post">
<div class="Post-header">
<div>
<h2>Second Photo</h2>
</div>
<div>
<span>12/14</span>
</div>
</div>
<div>
<img src="https://gaming-cdn.com/images/products/16250/screenshot/motogp-24-ps4-ps5-playstation-5-playstation-4-juego-playstation-store-wallpaper-5.jpg?v=1710413062"></img>
</div>
<div>
<p>This is my Second photo of the feed. This image shows the battle to get a place on the podium. Engeneering, aerodynamics and talent come together on the racetrack<strong>#Breathecode</strong></p>
</div>
</div>
<div class="container">
<div class="Post">
<div class="Post-header">
<div>
<h2>Third Photo</h2>
</div>
<div>
<span>12/14</span>
</div>
</div>
<div>
<img src="https://caracoltv.brightspotcdn.com/dims4/default/05a45be/2147483647/strip/true/crop/512x683+238+0/resize/330x440!/quality/90/?url=http%3A%2F%2Fcaracol-brightspot.s3.amazonaws.com%2F64%2Fbc%2F0e0dbc434acaaed08ce711074508%2Fgettyimages-1438717452.jpg"></img>
</div>
<div>
<p>This is my Third photo of the feed. In this photo is the trophy for which 22 drivers will fight for 22 races and in the end only one will be crowned as World Champoion of MotoGP 2024<strong>#Breathecode</strong></p>
</div>
</div>
</div>
</body>
</html>