-
Notifications
You must be signed in to change notification settings - Fork 415
/
index.html
65 lines (63 loc) · 1.73 KB
/
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
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
<!-- @format -->
<!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" />
<title>Hacktoberfest Animations</title>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,400|Warnes"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Patua+One&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Cabin+Sketch&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Nanum+Brush+Script&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/style.css" />
</head>
<body class="level-item">
<section class="section text-center">
<!-- here is the sample animation -->
<h1 id="target" class="title scare" data-text="Hacktoberfest animations">
Hacktoberfest animations
</h1>
<!-- here the animations will be inserted -->
<select id="animationSelect"></select>
<!-- here we show the animation name and who contribute with it -->
<div id="detail_elements" class="padding white max-w">
<p>Animation name: <span id="animationName"></span></p>
<p>
Submitted by:
<a
target="_blank"
style="color: #00ffff"
rel="noopener noreferrer"
id="userName"
></a>
</p>
</div>
<a
class="custom-btn"
href="https://github.com/NiallEccles/Hacktoberfest-animations"
>
<img
src="./assets/logo-github.png"
class="github-btn-logo"
alt="Logo Github"
/>
Contribute
</a>
</section>
<script src="animations.js"></script>
<script src="assets/script.js"></script>
</body>
</html>