scrimba
Responsive Design
Think responsively
Fixing up some loose ends
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Fixing up some loose ends
AboutCommentsNotes
Fixing up some loose ends
Expand for more info
about-me.html
run
preview
console
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Lora|Ubuntu:300,400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<div class="container container-flex">
<div class="site-title">
<h1>Living the social life</h1>
<p class="subtitle">A blog exploring minimalism in life</p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about-me.html">About me</a></li>
<li><a href="recent-posts.html">Recent posts</a></li>
</ul>
</nav>
</div> <!-- / .container -->
</header>

<div class="container container-flex">
<main role="main">
<img src="img/about-me.jpg" class="image-full">
<h2>My name is John and living the simple life saved my life</h2>

<p><strong>I used to be a pack rat</strong>. I had so many things that I thought that I loved, but the truth was I couldn't even appreciate any of it because there was too much.</p>
<p>Things were terrible. I had a job that I hated, a home that I didn't want to live in, and I couldn't hold a relationship.</p>

<h3>How I turned things around</h3>
<p><strong>I was on the verge of a breakdown when I got rid of everything</strong>. I literally put 90% of my possessions in the garbage, sold my place and moved into a smaller apartment, and I quit my job.</p>
<p>It wasn't easy at all, but everything around me was in such a bad place, I didn't know what else to do. And it worked.</p>

<h3>>Now I live the simple life</h3>
<p>Now that I'm living a simple life, things are so much better. I'm less stressed, enjoy life and work more, and I have more free time to enjoy.</p>
<p>With how much it turned my life around, <strong>I felt like I had no choice but to start sharing how I did it</strong>, and how others can benefit from living a simple life as well, which is why I started this site!</p>
</main>

<aside class="sidebar">

<div class="sidebar-widget">
<h2 class="widget-title">RECENT POSTS</h2>
<div class="widget-recent-post">
<h3 class="widget-recent-post-title">Keeping cooking simple</h3>
<img src="img/food.jpg" alt="two dumplings on a wood plate with chopsticks" class="widget-image">
</div>
<div class="widget-recent-post">
<h3 class="widget-recent-post-title">Simplicity and work</h3>
<img src="img/work.jpg" alt="a chair white chair at a white desk on a white wall" class="widget-image">
</div>
<div class="widget-recent-post">
<h3 class="widget-recent-post-title">Simple decorations</h3>
<img src="img/deco.jpg" alt="a green plant in a clear, round vase with water in it" class="widget-image">
</div>
</div>

</aside>

</div>


<footer>
<p><strong>Living the Simple Life</strong></p>
<p>Copyright 2019</p>
</footer>



</body>
</html>
Console
about-me.html
-4:28