-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththoughts.html
More file actions
67 lines (58 loc) · 2.65 KB
/
Copy paththoughts.html
File metadata and controls
67 lines (58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thoughts | Your Name</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">Your Name</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#articles">Thoughts</a></li>
</ul>
</nav>
</header>
<section id="articles">
<div class="thoughts-container">
<h2>My Thoughts & Reflections 🦅</h2>
<p>Here are some thoughts, ideas, and reflections I've written. Click on any article to read more.</p>
<div class="thought-list">
<div class="scrollable-thoughts">
<a href="articles/article1.html" class="thought">
<h3>The Power of Creative Thinking</h3>
<p class="thought-author">By John Doe</p>
<p class="thought-date">Published: February 23, 2025</p>
<p>A deep dive into how creativity can shape the way we solve problems.</p>
</a>
<a href="articles/article2.html" class="thought">
<h3>Why Failure is Necessary for Growth</h3>
<p class="thought-author">By Jane Smith</p>
<p class="thought-date">Published: January 15, 2025</p>
<p>Exploring why setbacks are crucial for long-term success.</p>
</a>
<a href="articles/article3.html" class="thought">
<h3>How AI is Changing Human Interaction</h3>
<p class="thought-author">By Alex Johnson</p>
<p class="thought-date">Published: December 5, 2024</p>
<p>Thoughts on how artificial intelligence is reshaping communication.</p>
</a>
<a href="articles/article4.html" class="thought">
<h3>How AI is Changing Human Interaction</h3>
<p class="thought-author">By Alex Johnson</p>
<p class="thought-date">Published: December 5, 2024</p>
<p>Thoughts on how artificial intelligence is reshaping communication.</p>
</a>
</div>
</div>
<p><a href="submit-thought.html" class="btn">Submit a New Thought</a></p>
</div>
</section>
<footer>
<p>© 2025 Your Name | Built with ❤️</p>
</footer>
</body>
</html>