-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (62 loc) · 2.85 KB
/
index.html
File metadata and controls
68 lines (62 loc) · 2.85 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
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/e4b9cb38f0.js" crossorigin="anonymous"></script>
<title>JavaScript30</title>
</head>
<body>
<header>
<div class="container">
<div class="header">
<h1 class="header__title">JavaScript30</h1>
<p class="header__desc">Here is a list of my versions of JavaScript30 practice projects. It's a free
course
created by
Wes Bos where you can practice vanilla
JS skills by doing small and fun projects.</p>
<div class="header__link">
<a href="https://javascript30.com/" target="_blank"><i class="fa-solid fa-arrow-right"></i> view
course</a>
<a href="https://github.com/KellyCHI22/JavaScript30" target="_blank"><i
class="fa-brands fa-github"></i>
github repo</a>
</div>
<img class="bg-pattern_1" src="./assets/bg-pattern_1.svg" alt="" aria-hidden="true">
<img class="bg-pattern_2" src="./assets/bg-pattern_2.svg" alt="" aria-hidden="true">
<img class="bg-pattern_3" src="./assets/bg-pattern_3.svg" alt="" aria-hidden="true">
</div>
</div>
</header>
<main>
<div class="container">
<div id="challenges" class="challenges">
<!-- generate data by js -->
</div>
</div>
</main>
<footer>
<div class="container">
<div class="other-links">
<span class="other-link">other links</span>
<a href="https://github.com/KellyCHI22/frontend-mentor-solutions" class="other-link" target="_blank"><i
class="fa-solid fa-list"></i> my
frontend mentor projects</a>
<a href="https://medium.com/@Kelly_CHI" class="other-link" target="_blank"><i
class="fa-brands fa-medium"></i> my blog</a>
<a href="mailto: chihsinting@gmail.com" class="other-link" target="_blank"><i
class="fa-solid fa-envelope"></i> contact me</a>
<img class="bg-pattern_4" src="./assets/bg-pattern_4.svg" alt="" aria-hidden="true">
<img class="bg-pattern_1-2" src="./assets/bg-pattern_1.svg" alt="" aria-hidden="true">
</div>
</div>
</footer>
<div class="marquee" aria-hidden="true">
<div>JavaScript is cool → JavaScript is cool → JavaScript is cool</div>
</div>
<script src="index.js"></script>
</body>
</html>