forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (69 loc) · 2.6 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
<!DOCTYPE html>
<html>
<head>
<title>Practica feed</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<div class="block">
<h1>Breathe Code Photo Feed</h1>
</div>
</header>
<div class="block">
<div class="title">
<h2><strong>My First Photo</strong></h2>
</div>
<div class="date">
<p>12/14</p>
</div>
<div class="image">
<img src="https://t3.ftcdn.net/jpg/00/79/31/34/360_F_79313453_1ld7t1eBHBP0GZUIxLaSJuAD08bbIB09.jpg"/>
</div>
<div class="description">
<p>This is my first photo of the feed. This is a multi line comment for testing<br />purpouses. I am learning to code with <strong>#BreathCode</strong></p>
</div>
</div>
<div class="block">
<div class="title">
<h2>Some cute thing</h2>
</div>
<div class="date">
<p>12/17</p>
</div>
<div class="image1">
<img src="https://as1.ftcdn.net/v2/jpg/02/84/78/36/1000_F_284783679_NAn7UK5EULuqC9yEoUg987r2Ml4O7sFK.jpg"/>
</div>
<div class="description">
<p>The internet approves this cute dog...<strong>#BreathCode</strong></p>
</div>
</div>
<div class="block">
<div class="title">
<h2>There's a paparazzi around</h2>
</div>
<div class="date">
<p>12/17</p>
</div>
<div class="image">
<img src="https://assets.techrepublic.com/uploads/2022/08/learn-coding-automation-just-770x513.jpeg"/>
</div>
<div class="description">
<p>This is me waiting for the screen to show my awesome first website made at <strong>#BreathCode</strong></p>
</div>
</div>
<div class="block">
<div class="title">
<h2>And of course...Food!</h2>
</div>
<div class="date">
<p>12/17</p>
</div>
<div class="image">
<img src="https://phantom-expansion.unidadeditorial.es/14fcf9e597b3572c600c8845ed1cd436/resize/640/assets/multimedia/imagenes/2023/01/20/16742220749839.png"/>
</div>
<div class="description">
<p>Because no photo feed is cool without some food on it! <strong>#BreathCode</strong></p>
</div>
</body>
</html>