-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyFirstPage.html
89 lines (83 loc) · 2.44 KB
/
myFirstPage.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
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
<!doctype html>
<!-- demo1.html Dave Reed -->
<!-- This is a simple Web page. -->
<!-- ==================================== -->
<html>
<style>
table,
th,
td {
border: 1px solid black;
}
</style>
<head>
<title> Lynn </title>
<h1 style="font-size:60px;text-align:center;">🫵 This is a LARGE heading</h1>
<hr>
<h2 style="font-size:30px;text-align:center;">Welcome to my page 🥱 💤</h2>
<h3 style="font-size:26px;text-align:center;">Get to know the creator? 👇 👇 👇</h3>
<hr>
</head>
<body>
<div style="text-align:center;">
<img src="images/JPG copy.jpg" style="width:80%;">
</div>
<p>💣 💣 💣:
<p>
<p style="color:red;">Enter Sandman-Metallica</p>
<audio controls>
<source src="audio/Metallica_ Enter Sandman.mp3" type="audio/mpeg">
</audio>
<hr>
<h3>Topics I'm interest in:</h3>
<ul style="font-family:courier;font-size:20px">
<li>Art</li>
<li>Productivity</li>
<li>Metacognition</li>
<li>Speech</li>
<li>Philosophy</li>
<li>Leadership</li>
<li>Mindset</li>
<li style="font-weight:bold;">Etc.</li>
</ul>
<hr>
<h2>ART: Creation of Adam, Michelangelo</h2>
<p><img src="images/Creation_of_Adam.jpg" alt="Creation of Adam, Michelangelo" width="100%">
<br>
<a
href="https://commons.wikimedia.org/wiki/File:Creation_of_Adam,_Michelangelo_(1475%E2%80%931564),_circa_1511.jpg">Source:
Creation of Adam, Michelangelo (1475&ndash1564), circa 1511.
From Wikimedia Commons, the free media repository</a>
</p>
<hr>
<h2>NEUROSCI: Controlling Your Dopamine For Motivation, Focus & Satisfaction, Huberman Lab</h2>
<p style="font-size:20px;"><a href="https://youtu.be/QmOF0crdyRU?si=8gAND96x2Pcv4ngZ">Click to watch the YouTube
video</a><br>
Typical things people do that are known to increase the dopamine and how much dopamine is increased above the
baseline level :  🧠</p>
<table style="width:100%;font-size:20px;">
<tr>
<th>Name</th>
<th>Times</th>
</tr>
<tr>
<td>Chocolate</td>
<td>1.5x</td>
</tr>
<tr>
<td>Cocaine</td>
<td>1.5x</td>
</tr>
<tr>
<td>Nicotine</td>
<td>2.5x</td>
</tr>
<tr>
<td>Amphetamine</td>
<td>10x</td>
</tr>
</table>
<br><br>
<p style="text-align:center;font-family:italic;">© Xilin Cai 2024 for UWO Fox Cities </p>
</body>
</html>