-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchristmas.html
58 lines (49 loc) · 2.54 KB
/
christmas.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Kevin Bastien</title>
<meta name=”description” content=”Kevin Bastien is a student at the University of Portland. Kevin Bastien is studying Computer Science, and is currently a freelancer.”/>
<!-- Temporary Profile Card inspired by Dave Gamache's dribbble design. -->
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<script src="bower_components/jquery/dist/jquery.min.js" type="text/javascript"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js" type="text/javascript"></script>
<script src="bower_components/jquery-snowfall/dist/snowfall.jquery.min.js" type="text/javascript"></script>
<script src="bower_components/jquery.transit/jquery.transit.js" type="text/javascript"></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Personal Style Sheet, Fonts, Favicon -->
<link rel="shortcut icon" href="/assets/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="css/compiled/styles.css">
<link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
</head>
<body id="christmas">
<div class="container">
<h1 class="merry-txt">Happy Holidays!</h1>
<div class="ground"></div>
<div class="mountains">
<div class="mountain1"><div class="mountain-top1"> </div></div>
<div class="mountain2"><div class="mountain-top2"> </div></div>
<div class="mountain3"><div class="mountain-top3"> </div></div>
</div>
<img src="assets/scenery.png" class="cabin">
</div>
<img src="assets/santa.gif" class="santa">
<!-- bottom navbar -->
<div class="xmas">
<div class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<div class="col-md-4 col-md-offset-5">
<p class="navbar-text">Made with <span class="glyphicon glyphicon-heart" aria-hidden="true"></span> by <a href="http://kevinbastien.com">Kevin Bastien</a></p>
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript">
$(document).snowfall({image :"http://www.lilwaynehq.com/forums/images/smilies/drizzy-face.png", minSize: 15, maxSize:40, flakeCount : 100, maxSpeed : 10});
$('.merry-txt').transition({});
$.fx.speeds._default = 50000;
$('.santa').transition({ x: 4000, y: -500 });
</script>
</html>