forked from chidrome/About-Me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 975 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Paolo Chidrome</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>A little about me</h1>
<p id="result">Rather than just the usual paragraph where I tell you a little about me, how about we play a game? I promise it'll be fun!</p>
<input type="button" onclick="start()" value="Let's Play!" id="start">
<input type="button" onclick="restart()" value="Play again!" id="playAgain">
<div class="hideTen" id="topTen">
<p>My Top 10 places that I've visited.</p>
<ol class="topTenPlaces">
<li>Santorini</li>
<li>Paris</li>
<li>London</li>
<li>Mykonos</li>
<li>Tokyo</li>
<li>Boracay Islands</li>
<li>Manila</li>
<li>Seoul</li>
<li>Los Angles</li>
<li>Chiang Mai</li>
</ol>
</div>
<script src='app.js' async defer></script>
</body>
</html>