-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (61 loc) · 2.63 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
66
67
68
69
70
71
72
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ambient sounds</title>
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="description" content="">
<meta itemprop="name" content="Project">
<meta itemprop="description" content="Content description less than 200 characters">
<meta itemprop="image" content="http://yourawesomeproject.com/image.jpg">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Project">
<meta property="og:url" content="http://yourawesomeproject.com">
<meta property="og:type" content="website">
<meta property="og:title" content="Your Next Awesome Project">
<meta property="og:image" content="http://yourawesomeproject.com/image.jpg">
<meta property="og:description" content="Description Here">
<meta property="og:site_name" content="Site Name">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@site_account">
<meta name="twitter:creator" content="@individual_account">
<meta name="twitter:url" content="http://yourawesomeproject.com">
<meta name="twitter:title" content="Project">
<meta name="twitter:description" content="Content description less than 200 characters">
<meta name="twitter:image" content="http://yourawesomeproject.com/image.jpg">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="/assets/favicon/favicon.ico"/>
<link rel="apple-touch-icon" href="/assets/favicon/apple-touch-icon.png">
<link rel="stylesheet" href="styles/style.css?v=1.0">
</head>
<body class="theme--rain">
<audio id="audio">
<source src="" type="audio/mp3">
</audio>
<div class="container">
<div class="overlay"></div>
<video autoplay muted loop id="video">
<source src="" type="video/mp4">
</video>
<div class="content">
<section class="cards">
<ul class="cards-list"></ul>
<div class="cards-info">
<p class="cards-info-top"></p>
<div class="cards-info-tooltip">
<p class="cards-info-bottom"></p>
</div>
</div>
</section>
</div>
<footer>
<!-- Footer content goes here -->
</footer>
</div>
<script src="js/swiped-events.min.js"></script>
<script src="js/cards.js"></script>
<script src="js/script.js"></script>
</body>
</html>