-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML.html
More file actions
71 lines (63 loc) · 2.65 KB
/
Copy pathHTML.html
File metadata and controls
71 lines (63 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dev Log</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="hero">Mikal | Full Stack Stanley</div>
<nav class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="https://jvcswebdesigns.nfshost.com">Johnathan's Website</a></li>
<li><a href="#about">About</a></li>
<li><a href="#devlog">Dev Log</a></li>
</ul>
</nav>
<div class="container">
<aside class="sidebar">
<img src="IMG_2455.jpeg" alt="SilverSurferPFP" class="profile-img">
<section id="about">
<h2>About Me</h2>
<p>My family is my inspiration for building a career in technology with i.c.stars. I am committed to mastering these skills to grow professionally, create a better future, and develop my own projects</p>
<h3>Fun Facts</h3>
<ul>
<li>I can Rap</li>
<li>Basic Code</li>
<li>I can cook a lil bit</li>
<li>Im the family tech</li>
</ul>
</section>
</aside>
<main class="main-content">
<h2 id="main-title">My Development Log</h2>
<button id="add-entry-btn" class="dynamic-btn">Add New Entry</button>
<button id="toggle-view-btn" class="dynamic-btn">Toggle View</button>
<div id="devlog">
<article class="log-entry">
<h3>Entry #1</h3>
<p class="date">Date: 2025-09-10</p>
<p class="author">Author: Mikal Shaffer</p>
<div class="entry-content">
<h4>Project Kickoff</h4>
<p>Hello Hello. Jess and JB, the absolute best at what they do would like us to practice java script.</p>
<p>Today's focus: Build a Dev Log.</p>
</div>
</article>
<article class="log-entry">
<h3>Entry #2</h3>
<p class="date">Date: 2025-09-15</p>
<p class="author">Author: Mikal Shaffer</p>
<div class="entry-content">
<h4>Personal Project Progress</h4>
<p>I am absolutley losing my mind.</p>
</div>
</article>
</div>
</main>
</div>
<script src="script.js"></script>
</body>
</html>