-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
212 lines (162 loc) · 4.85 KB
/
index.htm
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html class="final-project">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>IST 400 | Advanced Web Design | Final Project</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/final.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" />
<link rel="stylesheet" href="css/slick.css">
</head>
<body>
<header class="main-header">
<h1 class="heading">Year of 2016</h1>
<i class="fa fa-sort-desc"></i>
<nav class="navigation">
<h1>Main Navigation Menu</h1>
<ul>
<li><a href="#slides">Home</a></li>
<li><a href="#abroad">Study Abroad</a></li>
<li><a href="#countries">Asia Trips</a></li>
<li><a href="#follow">Follow Me</a></li>
</ul>
</nav>
<div class="loading-screen"></div>
</header>
<section id="slides" class="main-section"data-scroll-class="scrolled-to">
<article>
<img src="img/one.jpg" alt="Image One" />
<h1>Taipei 101</h1>
</article>
<article>
<img src="img/two.JPG" alt="Image Two" />
<h1>Umeda Sky Building</h1>
</article>
<article>
<img src="img/three.JPG" alt="Image Three" />
<h1>Songshan District</h1>
</article>
<article>
<img src="img/four.jpg" alt="Image Four" />
<h1>Kurama Onsen</h1>
</article>
</section>
<section id="abroad" class="main-section"data-scroll-class="scrolled-to">
<header class="heading2">
<h1>Study Abroad</h1>
</header>
<div>
<h2>Kansai Gaidai University</h2>
<div class="extra-credit">
</div>
</div>
<div>
<p>
Study Abroad in Japan is one of the best time of my life. I ate many delicious food, made many friends, went to many places, and learned many new things. I love it! Everything is awesome. I wish I could of stay there longer.
</p>
<blockquote>
<i class="fa fa-quote-left"></i>Hey Japan, I will be back<i class="fa fa-quote-right"></i>
</blockquote>
</div>
</section>
<section id="countries" class="main-section"data-scroll-class="scrolled-to">
<header class="heading3">
<h1>Asia Trips</h1>
</header>
<ul>
<li>
<img src="img/japan.JPG" alt="One" />
<a href="img/japan.jpg">
japan
</a>
</li>
<li>
<img src="img/thai.jpg" alt="Two" />
<a href="img/thai.jpg">Thailand
</a>
</li>
<li>
<img src="img/korea.jpg" alt="Three" />
<a href="img/korea.jpg">Korea
</a>
</li>
<li>
<img src="img/taipei.JPG" alt="Four" />
<a href="img/taipei.jpg">Taipei
</a>
</li>
</ul>
</section>
<section id="follow" class="main-section"data-scroll-class="scrolled-to">
<header class="heading4">
<h1>Connect on Social Media</h1>
</header>
<ul>
<li>
<a class="facebook" href="#">
<i class="fa fa-facebook-square" aria-hidden="true"></i>
</a>
<h2>Like on Facebook</h2>
</li>
<li>
<a class="twitter" href="#">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
<h2>Follow on Twitter</h2>
</li>
<li>
<a class="instagram" href="#">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
<h2>Follow on Instagram</h2>
</li>
<li>
<a class="google" href="#">
<i class="fa fa-google" aria-hidden="true"></i>
</a>
<h2>Google Me</h2>
</li>
</ul>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/slick.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/headroom/0.9.3/headroom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/headroom/0.9.3/jQuery.headroom.min.js"></script>
<script src="js/scrollClass.min.js"></script>
<script>
$.fn.scrollMenu = function(options) {
var defaults = {
duration: 1000
};
var settings = $.extend({}, defaults, options);
return this.each(function() {
$(this).click(function(){
event.preventDefault();
var href = $(this).attr('href');
var offset = $(href).offset().top;
$('body').animate({scrollTop:offset}, defaults.duration);
});
});
};
$('.navigation a').scrollMenu({duration:200});
$(function() {
$('.main-header i').click(function() {
$('.navigation').toggleClass('open');
});
$('#slides').slick({
arrows: true,
dots:false,
autoplay:true,
autoplaySpeed:3000
});
$('.main-header').headroom({
classes: {
unpinned: "unpinned"
}
});
});
</script>
</body>
</html>