-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog.html
More file actions
executable file
·94 lines (94 loc) · 4.78 KB
/
Blog.html
File metadata and controls
executable file
·94 lines (94 loc) · 4.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://underaaa.github.io/Under.github.io/Css/blog.css">
<link rel="stylesheet" href="https://underaaa.github.io/Under.github.io/Css/nav.css">
<link rel="stylesheet" href="https://underaaa.github.io/Under.github.io/Css/header.css">
<title>Under's_main</title>
</head>
<body>
<header>
<a href="https://underaaa.github.io/Under.github.io/index.html">
<h1>
Underlife Website
</h1>
</a>
</header>
<nav>
<div id="mySidepanel" class="sidepanel">
<!-- close botton -->
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<ul>
<!-- In side the nav that is hidden tell open this is reused on many pages and uses java scriped a little to keep it hidden and able to be responsive on its own -->
<li><a href="https://underaaa.github.io/Under.github.io/Blog.html">Blog</a></li>
<li><a href="https://underaaa.github.io/Under.github.io/plans.html">Plans</a></li>
<li><a href="https://underaaa.github.io/Under.github.io/tech_skills.html">Tech Skills</a></li>
</ul>
</div>
<div class="blog-nav-left-sp" >
<button class="openbtn" onclick="openNav()">☰</button> <!-- this is the nav hamborgar bottom -->
</div>
</nav>
<main>
<aside>
<!-- This is for the side bar and with how this site is we will keep this on all pages to keep it consistant -->
<article>
<!-- This is the about me section This is on the right side of the site at most times unless user is on mobile -->
<h2>About Me</h2>
<p>I’m 19 years old and my name is Jacob smith. I love technology and love to try new things like this year I plan to build this site and try to work in VR/MR after I get the quest 3. I like to share things that I do and want to get a job in I.T. Rn I’m upgrading a high school class to get the needed requirement for a computer science class in a local collage or university.</p>
</article>
<br>
<div class="Socials">
<h2>Socials</h2>
<ul>
<!-- This is Socials section all of them are links that need to be updated -->
<li><a href="https://bsky.app/profile/underleftlife.bsky.social">BlueSky</a></li>
<li><a href="https://github.com/underaaa?tab=overview&from=2023-09-01&to=2023-09-26">GitHub</a></li>
<li> Still thinking..</li>
</ul>
</div>
</aside>
<section>
<!-- This is for the main section -->
<details class="Things">
<summary class="">
<h2>Navigating My Adulthood: Reflections and Goals After Graduation</h2>
</summary>
<a href="https://underaaa.github.io/Under.github.io/first_blog.html">released on July 20st of 2025. Have a nice read</a>
</details>
<br>
<details class="Things">
<summary class="">
<h2>My Journey with AI: From Excited Explorer to Concerned Observer</h2>
</summary>
<a href="https://underaaa.github.io/Under.github.io/second_blog.html">released on July 21st of 2025. Have a nice read</a>
</details>
<br>
<details class="Things">
<summary class="">
<h2>My First Chromebook</h2>
</summary>
<a href="https://underaaa.github.io/Under.github.io/chromebook.html">released on August 26th of 2025. have a nice read</a>
</details>
<br>
<details class="Things">
<summary class="">
<h2>Tech Journey: From start to now</h2>
</summary>
<a href="https://underaaa.github.io/Under.github.io/tech_journey.html">released on August 31st of 2025. Have a nice read</a>
</details>
<br>
<details class="Things">
<summary class="">
<h2>The Upgrading Life</h2>
</summary>
<a href="https://underaaa.github.io/Under.github.io/the_upgrading _life.html">released on September 4th of 2025. Have a nice read</a>
</details>
</section>
</main>
<footer>@Underlife__</footer>
</body>
<script src="https://underaaa.github.io/Under.github.io/JS/index.JS"></script>
</html>