-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·114 lines (100 loc) · 5.04 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="Cherry Blossom Festival Homepage">
<meta name="author" content="Kayla Kremer">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon.png">
<title>Home</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link rel="stylesheet" type="text/css" href="css/ie10-viewport-bug-workaround.css"/>
<!-- Custom styles for this template -->
<link rel="stylesheet" type="text/css" href="css/index.css"/>
<link rel="stylesheet" type="text/css" href="css/animate.css"/>
<link rel="stylesheet" type="text/css" href="css/social.css"/>
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="js/ie-emulation-modes-warning.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-toggleable-sm fixed-top">
<!--<a class="navbar-brand mr-auto" href="index.html"><img src="img/logo.png" width="60px"></a>-->
<ul class="nav navbar-nav nav-container">
<li class="nav-item">
<a class="nav-link animsition-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link animsition-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link animsition-link" href="events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link animsition-link" href="location.html">Location</a>
</li>
<li class="nav-item">
<a class="nav-link animsition-link" href="contact.html">Contact</a>
</li>
</ul>
</nav>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="inner cover animated fadeIn content">
<h1 class="cover-heading">Cherry Blossom Festival</h1>
<p class="lead">Spring is here and the cherry blossom season is upon us! Find out where & when you can see Japan's iconic pink flowers for yourself.</p>
<p class="lead">
<a href="about.html" class="btn btn-lg btn-main">Learn more</a>
</p>
</div>
<div class="mastfoot-container">
<div class="mastfoot">
<div class="inner">
<p>Created by <a href="https://www.kaylakremer.com" target="_blank">Kayla Kremer</a></p>
<div class="social">
<ul class="social-buttons" id="demo1">
<li>
<a href="https://twitter.com/Kayla_Kremer" target="_blank" class="brandico-twitter-bird"></a>
</li>
<li>
<a href="https://github.com/KaylaKremer" target="_blank" class="brandico-github"></a>
</li>
<li>
<a href="https://www.linkedin.com/in/kaylakremer/" target="_blank" class="brandico-linkedin"></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="js/ie10-viewport-bug-workaround.js"></script>
<script src="js/jquery.vide.min.js"></script>
<script>
$('body').vide({
mp4: 'video/sakura.mp4',
poster: 'video/sakura.png'
});
</script>
</body>
</html>