-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (57 loc) · 3.61 KB
/
index.html
File metadata and controls
62 lines (57 loc) · 3.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/style-homepage.css">
<link rel="shortcut icon" type="image/jpg" href="assets/images/favicon.png">
<title>Jessica's JavaScriptmas</title>
</head>
<body>
<img id="homepage-img" src="assets/images/home.png" height="360" width="480">
<img id="speech1" class="speech hide" src="assets/images/speech-1.png" height="150" width="250">
<img id="speech2" class="speech hide" src="assets/images/speech-2.png" height="150" width="250">
<img id="speech3" class="speech hide" src="assets/images/speech-3.png" height="150" width="250">
<img id="speech4" class="speech hide" src="assets/images/speech-4.png" height="150" width="250">
<p>
<span>Welcome to my JavaScriptmas 2020 website!</span>
<br><br>
As a beginner to coding, this website was created purely for JavaSript, HTML & CSS practice.
The pages are based on my solutions to the <a href="https://scrimba.com/learn/adventcalendar" target="_blank">scrimba.com</a> <em>24 days of #JavaScriptmas </em>(2020) challenge.
<br><br>
Click the buttons below to view each challenge.
</p>
<header>
<button class="challenge-icon"><a href="index-1.html">1</a></button>
<button class="challenge-icon"><a href="index-2.html">2</a></button>
<button class="challenge-icon"><a href="index-3.html">3</a></button>
<button class="challenge-icon"><a href="index-4.html">4</a></button>
<button class="challenge-icon"><a href="index-5.html">5</a></button>
<button class="challenge-icon"><a href="index-6.html">6</a></button>
<button class="challenge-icon"><a href="index-7.html">7</a></button>
<button class="challenge-icon"><a href="index-8.html">8</a></button>
<button class="challenge-icon"><a href="index-9.html">9</a></button>
<button class="challenge-icon"><a href="index-10.html">10</a></button>
<button class="challenge-icon"><a href="index-11.html">11</a></button>
<button class="challenge-icon"><a href="index-12.html">12</a></button>
<button class="challenge-icon"><a href="index-13.html">13</a></button>
<button class="challenge-icon"><a href="index-14.html">14</a></button>
<button class="challenge-icon"><a href="index-15.html">15</a></button>
<button class="challenge-icon"><a href="index-16.html">16</a></button>
<button class="challenge-icon"><a href="index-17.html">17</a></button>
<button class="challenge-icon"><a href="index-18.html">18</a></button>
<button class="challenge-icon"><a href="index-19.html">19</a></button>
<button class="challenge-icon"><a href="index-20.html">20</a></button>
<button class="challenge-icon"><a href="index-21.html">21</a></button>
<button class="challenge-icon"><a href="index-22.html">22</a></button>
<button class="challenge-icon"><a href="index-23.html">23</a></button>
<button class="challenge-icon"><a href="index-24.html">24</a></button>
</header>
<script src="assets/js/script.js"></script>
<script src="assets/js/script-home.js"></script>
</body>
</html>