-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlife_update_june_2024.html
64 lines (56 loc) · 2.5 KB
/
life_update_june_2024.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
63
64
<!DOCTYPE html>
<html>
<head>
<title>Life Update June 2024</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata">
<style>
body, html {
height: 100%;
font-family: "Inconsolata", sans-serif;
}
.bgimg {
background-position: center;
background-size: cover;
background-image: url("./images/oyster.jpeg");
min-height: 75%;
}
.menu {
display: none;
}
</style>
</head>
<body>
<!-- Header with image -->
<header class="bgimg w3-display-container w3-grayscale-min" id="home">
<div class="w3-display-bottomleft w3-center w3-padding-large w3-hide-small">
<span class="w3-tag">Beyond blessed</span>
</div>
<div class="w3-display-middle w3-center">
<span class="w3-text-white" style="font-size:90px">the<br>Harvest<br>Time</span>
</div>
<div class="w3-display-bottomright w3-center w3-padding-large">
<span class="w3-text-white">July 18, 2024</span>
</div>
</header>
<!-- Add a background color and large text to the whole page -->
<div class="w3-sand w3-grayscale w3-large">
<!-- About Container -->
<div class="w3-container" id="about">
<div class="w3-content" style="max-width:700px">
<h5 class="w3-center w3-padding-64"><span class="w3-tag w3-wide">LIFE UPDATE - JUNE 2024</span></h5>
<p>I remember when I started this blog space, I emotions were down every day. I desperately want a new job, that could save me from current job. Thanks god, I finally received an offer letter from a desired job. Words can't express how happy I was. How lucky I felt I was. I'm beyond grateful to have received it.</p>
<p>My bf plays an important role in consistently supporting me throughout the process. Without him, everything would not turn out that smooth. We had a little celebration dinner, it was how the photo of fresh oysters came.</p>
<p>Time to move on to next small stage of my life. And it's almost time to say bye to my current job. I sincerely thank it for teaching me a lot, despite of some unwanted experience. Good and bad ones, everything happened here became the nutrients for my future career. Cheers!</p>
</div>
</div>
<!-- End page content -->
</div>
<!-- Footer -->
<footer class="w3-center w3-light-grey w3-padding-48 w3-large">
<p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" title="W3.CSS" target="_blank" class="w3-hover-text-green">w3.css</a></p>
</footer>
</body>
</html>