This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Your blog's title</h1> | |
<div class="img-wrapper"> | |
<img style="width: 500px; height: auto;" src="https://s26162.pcdn.co/wp-content/uploads/2020/09/Pink_1.jpg"/> | |
</div> | |
<h2>Entries:</h2> | |
<ul> | |
<li><a href="#blog-1">Blogpost #1</a></li> | |
<li><a href="#blog-2">Blogpost #2 <span style="background-color: yellow;"><- Featured!</span></a></li> | |
<li><a href="#blog-3">Blogpost #3</a></li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h1 { | |
text-align: center; | |
} | |
.img-wrapper { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Your blog's title</h1> | |
<img src="https://s26162.pcdn.co/wp-content/uploads/2020/09/Pink_1.jpg"/> | |
<h2>Entries:</h2> | |
<ul> | |
<li><a href="#blog-1">Blogpost #1</a></li> | |
<li><a href="#blog-2">Blogpost #2 <- Featured!</a></li> | |
<li><a href="#blog-3">Blogpost #3</a></li> | |
<li><a href="#blog-4">Blogpost #4</a></li> | |
</ul> | |
<h3 id="blog-1">Blogpost #1</h3> |