-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (39 loc) · 1.17 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
<head>
<meta content='width=device-width,initial-scale=1' name='viewport'>
<title>Poem For You</title>
<link type="text/css" rel="stylesheet" href="style.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Lato:700,900' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Cardo:400italic' rel='stylesheet' type='text/css'>
<script type="text/javascript">$("body").css("overflow", "hidden");</script>
<script type="text/javascript">$("body").css("overflow", "auto");</script>
<script src="jquery.firefly.js"></script>
<script>
$(function(){
$.firefly();
});
</script>
<body>
<div class="content">
<div class="poem">
<div id="fade">
<h1>
<!--replace with texting funtion-->
Roses are Red,<br>
Violets are Blue.<br>
Everything is grey,<br>
Including my hat
</h1>
</div>
</div>
<div class="info">
<div id="fade2">
<h2>
<!--replace with texting funtion-->
For - Man at Intrepid with V-necks<br>
May 2nd
</h2>
</div>
</div>
</div>
</body>