forked from JoinCODED/TASK-JS-Website-Exploration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (30 loc) · 1.03 KB
/
index.html
File metadata and controls
38 lines (30 loc) · 1.03 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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>🎇Supernovas: A Beautiful Ending🎇</h1>
<h2>My name is</h2>
<h3>Rawan Al-Musallam</h3>
<p>It is said that we humans are made of star dust, maybe this
explains my fascination towards space; galaxies, nebulas and
stars to be exact! I dream to one day own my own telescope, where
I'll finally feel closer to our origins✨🖤
</p>
<p>My goals out of this bootcamp are:</p>
<ol>
<li>Gain confidence in my abilities.</li>
<li>Not afraid of taking risks.</li>
<li>Learning it is ok to make mistakes and grow.</li>
<li>Broaden my passion for coding. </li>
</ol>
<button onclick="toggleColor()">Change Appearance</button>
<br />
<button onclick="beGentle()">be gentle</button>
<br />
<button onclick="shout()">SHOUT!</button>
<br />
<button onclick="fetchRandomName()">Generate random Name</button>
</body>
<script src="index.js"></script>
</html>