-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<title>Parallax</title>
<!--device-->
<meta name="viewport" content="width=980,user-scalable=0" />
<!--<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0" />-->
<meta name="format-detection" content="telephone=no" />
<!--/device-->
<!--link-->
<link rel="canonical" href="" />
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="" />
<link rel="apple-touch-icon" href="" />
<!--/link-->
<!--CSS-->
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/parallax.css">
<!--/CSS-->
</head>
<body role="document" itemscope="itemscope" itemtype="http://schema.org/WebPage">
<header role="banner" itemscope="itemscope" itemtype="http://schema.org/WPHeader">
<h1>Parallax</h1>
</header>
<footer role="contentinfo" itemscope="itemscope" itemtype="http://schema.org/WPFooter">
<small>© <span itemscope="itemscope" itemtype="http://schema.org/Organization"><span itemprop="name">JS Girls</span></span></small>
</footer>
<main role="main" itemprop="mainContentOfPage" itemscope="itemscope" itemtype="http://schema.org/WebPageElement">
<!--parallax parts-->
<div id="cloud_1"></div>
<div id="cloud_2"></div>
<div id="cloud_3"></div>
<div id="building"></div>
<div id="tree_left"></div>
<div id="tree_right"></div>
<!--/parallax parts-->
</main>
<script type="text/javascript" src="js/jquery.js"></script>
</body>
</html>