Skip to content

Commit

Permalink
💅 style: Add figcaption
Browse files Browse the repository at this point in the history
Were added figcaption and stylized them.
  • Loading branch information
Raphael-GC committed Oct 8, 2024
1 parent 21243eb commit 77cb547
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 12 deletions.
28 changes: 17 additions & 11 deletions week02/holygrail.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,24 @@ <h2>Belém Brazil Temple</h2>
</main>

<aside>
<img src="https://content.churchofjesuschrist.org/templesldsorg/bc/Temples/photo-galleries/rio-de-janeiro-brazil/800x800/11-44a124e6fe618047c177f883622a35d3a95dec86.jpeg"
alt="Rio de Janeiro Temple Celestial Room"
width="200"
>
<figure>
<img src="https://content.churchofjesuschrist.org/templesldsorg/bc/Temples/photo-galleries/rio-de-janeiro-brazil/800x800/11-44a124e6fe618047c177f883622a35d3a95dec86.jpeg"
alt="Rio de Janeiro Temple Celestial Room"
width="200"
/>
<figcaption>Rio de Janeiro Temple Celestial Room</figcaption>
</figure>

<figure>
<img src="https://content.churchofjesuschrist.org/templesldsorg/bc/Temples/photo-galleries/belem-brazil/800x500/belem_brazil_temple_sealing.jpg"
alt="Belem Brazil Temple Sealing Room"
width="200"
/>
<figcaption>Belem Brazil Temple Sealing Room</figcaption>
</figure>

</aside>
<aside>
<img src="https://content.churchofjesuschrist.org/templesldsorg/bc/Temples/photo-galleries/belem-brazil/800x500/belem_brazil_temple_sealing.jpg"
alt="Belem Brazil Temple Sealing Room"
width="200"
>
</aside>


<footer>
<p>©2024 Raphael Carneiro 🌳 Rio de Janeiro, Brazil</p>
</footer>
Expand Down
6 changes: 5 additions & 1 deletion week02/styles/holygrail.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ main p {
aside {
display: flex;
flex-direction: row;
float: right;
justify-content: center;
}

aside img {
Expand All @@ -72,6 +72,10 @@ aside img {
margin: 15px;
}

figcaption {
text-align: center;
}

footer {
text-align: center;
}

0 comments on commit 77cb547

Please sign in to comment.