-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (41 loc) · 1.97 KB
/
index.html
File metadata and controls
42 lines (41 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Animated ✨ Sparkles DEMO | Rene Rehme</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Rene Rehme">
<meta name="description" content="This is a demo site">
<meta property="og:title" content="Animated ✨ Sparkles DEMO | Rene Rehme">
<meta property="og:description" content="This is a demo site">
<meta property="og:url" content="/index.html">
<meta property="og:site_name" content="Rene Rehme">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;400;600&display=swap" rel="stylesheet">
<link href="Style.css" rel="stylesheet">
<link href="SparklingStars.css" rel="stylesheet">
<meta name="robots" content="index,follow" />
</head>
<body>
<div id="wrapper">
<header class="">
<div class="logo">
<img class="left" src="r-left.svg">
<img class="right" src="r-right.svg">
</div>
</header>
<main>
<h1>Animated ✨ Sparkles Demo</h1>
<h2>This is a jQuery demo for a sparkling stars effect</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod <span class="sparkling">tempor incididunt</span> ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure <span class="sparkling">dolor in reprehenderit</span> in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</main>
<footer>
<div><a href="https://renerehme.dev/blog/animated-sparkles-in-jquery"> read the article</a></div>
<div>© 2020 Rene Rehme. All Rights Reserved.</div>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="SparklingStars.js"></script>
</body>
</html>