-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (77 loc) · 2.47 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
73
74
75
76
77
78
79
80
81
82
83
84
85
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<script src="scripts/google-analytics.js"></script>
<script src="scripts/block_ie.js"></script>
<script>
function move() {
var elem = document.getElementById("myBar");
var width = 1;
var id = setInterval(frame, 10);
function frame() {
if (width >= 100) {
clearInterval(id);
} else {
width++;
elem.style.width = width + '%';
}
}
}
function scrolldown() {
var duration = 1000
zenscroll.intoView(footer, 1000)
}
</script>
<meta type="text/css" charset="utf-8"/>
<link rel="stylesheet" href="css/style.css"/>
<link rel='icon' href='favicon.ico' type='image/x-icon'/>
<title> L+J Save the Date </title>
</head>
<body onload="setTimeout(scrolldown, 1200);move();">
<div id="container">
<div id="myProgress">
<div id="myBar"></div>
</div>
<div id="information">
<h1> Save the Date </h1>
<h3> for the wedding of </h3>
<center> <img id="turtle" src="pngs/turtle.png" alt="turtle" style="width: 500px;"></center>
<div id="info"><h3> on March 25, 2017 <br> in Manhattan, New York City </h3>
</div>
</div>
<center>
<div id="RSVP">
<form>
<input type="button" value="<<Click here to RSVP>>" onclick="window.open('https://goo.gl/forms/vAuIZofi9MzrhsGh1')">
</form>
</div>
</center>
<center><div id="castle">
<img id="flag" src="pngs/flag.png" alt="flag">
<img id="castletop" src="pngs/castlea.png" alt="castletop">
<img id="castlebottom" src="pngs/castleb.png" alt="castlebottom">
<div id="character">
<img id="peach" src="pngs/peach.png" alt="peach">
<img id="mario" src="pngs/mario.png" alt="mario">
</div>
<div id="character2">
<img id="mario2" src="pngs/mario.png" alt="mario2">
<img id="peach2" src="pngs/peach.png" alt="peach2">
</div>
</div></center>
<center><div id="forestry">
<img id="bushA" src="pngs/bushA.png" alt="bushA">
<img id="bushB" src="pngs/bushB.png" alt="bushB">
<img id="hill" src="pngs/hill.png" alt="hill">
<img id="hill2" src="pngs/hill.png" alt="hill2">
<img id="bighill" src="pngs/bighill.png" alt="bighill">
<img id="bighill2" src="pngs/bighill.png" alt="bighill2">
<img id="largehill" src="pngs/bighill.png" alt="largehill">
</div></center>
</div>
<div id="footer">
</div>
<script src="scripts/zenscroll.js"></script>
<script src="scripts/zenscroll-min.js"></script>
</body>
</html>