forked from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindext.html
62 lines (57 loc) · 2.18 KB
/
indext.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
<!DOCTYPE html>
<html>
<head>
<title>My Photo Feed</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>Breathe Code Photo Feed</h1>
</header>
<section>
<div class="box">
<div class="header">
<p class="date">12/04</p>
<h2>My First Photo</h2>
</div>
<div class="img">
<img src="https://images.unsplash.com/photo-1736347837458-7cc3697ba57a?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxmZWF0dXJlZC1waG90b3MtZmVlZHwyMnx8fGVufDB8fHx8fA%3D%3D">
</div>
<div class="descripcion">This is my first photo of the feed.this is a multi line comment to testingpurposes.I am learning to code with <strong>#BreatheCode</strong></div>
</div>
<div class="box">
<div class="header">
<p class="date">12/04</p>
<h2>Island Photo</h2>
</div>
<div class="img">
<img src="https://plus.unsplash.com/premium_photo-1732025157805-c5ccb9049fdd?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxmZWF0dXJlZC1waG90b3MtZmVlZHw1M3x8fGVufDB8fHx8fA%3D%3D"></div>
<div class="descripcion">a couple of properties on one of the islands <strong>#BreatheCode</strong>
</div>
</div>
<div class="box">
<div class="header">
<p class="date">12/04</p>
<h2>Camera Photo</h2>
</div>
<div class="img">
<img src="https://plus.unsplash.com/premium_photo-1736568427137-aa535520ccad?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxmZWF0dXJlZC1waG90b3MtZmVlZHw5fHx8ZW58MHx8fHx8">
</div>
<div class="descripcion">A camera monitoring everything that happens in some shopping center in the world <strong>#BreatheCode</strong>
</div>
</div>
<div class="box">
<div class="box">
<div class="header">
<p class="date">12/04</p>
<h2>Photo Of Northern Lights</h2>
</div>
<div class="img">
<img src="https://images.unsplash.com/photo-1736506325808-62a1e77e6ea1?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxmZWF0dXJlZC1waG90b3MtZmVlZHwzNnx8fGVufDB8fHx8fA%3D%3D">
</div>
<div class="descripcion">Northern Lights on a mountain somewhere in the world<strong>#BreatheCode</strong></div>
<div class="box">
<footer>
</footer>
</body>
</html>