-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-me.html
More file actions
124 lines (117 loc) · 3.97 KB
/
about-me.html
File metadata and controls
124 lines (117 loc) · 3.97 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/css/style-full-page.css" />
<!-- <link rel="stylesheet" href="/styles/styleNav-side.css" /> -->
<link
href="http://fonts.googleapis.com/css?family=Lora|Ubuntu:300,400,700&display=swap"
rel="stylesheet"
/>
<title>Living the Simple Life</title>
</head>
<body>
<!-- Header -->
<header>
<div class="container container-flex">
<div class="site-title">
<h1>Living The Simple Life</h1>
<p class="subtitle">A blog exploring minimalism in life</p>
</div>
<nav>
<ul>
<li>
<a href="index-full-page.html">Home</a>
</li>
<li><a href="about-me.html" class="current-page">About me</a></li>
<li>
<a href="recent-pots.html">Recent posts</a>
</li>
</ul>
</nav>
</div>
<!-- /. container -->
</header>
<!-- main-part -->
<div class="container container-flex">
<main role="main">
<img
src="images/mike-baker-3Y366aqddJ0-unsplash.jpg"
class="image-full"
/>
<h2>My name os John and living the simple life saved my life</h2>
<p>
<strong>I used to be a pack rat</strong>. I had also many things that
I thought that I love, 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="images/charles-D-vDQMTfAAU-unsplash.jpg"
alt=""
class="widget-image"
/>
</div>
<div class="widget-recent-post">
<h3 class="widget-recent-post-title">Simplicity and work</h3>
<img
src="images/bench-accounting-nvzvOPQW0gc-unsplash.jpg"
alt=""
class="widget-image"
/>
</div>
<div class="widget-recent-post">
<h3 class="widget-recent-post-title">Simple decorations</h3>
<img
src="images/sarah-dorweiler-x2Tmfd1-SgA-unsplash.jpg"
alt=""
class="widget-image"
/>
</div>
</div>
</aside>
</div>
<!-- Footer -->
<footer>
<p><strong>Living The Simple Life</strong></p>
<p>Copyright ©2021</p>
</footer>
</body>
</html>