-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
199 lines (185 loc) · 5.52 KB
/
Copy pathindex.html
File metadata and controls
199 lines (185 loc) · 5.52 KB
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
<!DOCTYPE html>
<html>
<head>
<!-- metadata initialization -->
<meta charset="utf-8" />
<meta name="author" content="CoderJS" />
<meta
name="description"
content="Learn How to Build Website with HTML and CSS"
/>
<meta charset="viewport" content="width=device-widht, initail-scale=1.0" />
<!-- CSS Files -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- Fonts Style -->
<link
href="https://fonts.googleapis.com/css?family=Lobster"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Oswald"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Quicksand:400,500,700"
rel="stylesheet"
/>
<!-- title -->
<title>Project Based Learning 1</title>
</head>
<body>
<!-- Header Section -->
<header>
<div class="container">
<!-- Logo -->
<a href="#" class="logo"> <img src="img/logo.png" alt="Nature" /> </a>
<!-- Navigation Menu -->
<nav>
<ul>
<li>
<a href="#" class="selected">Home</a>
</li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- End of Header Section -->
<!-- Slider Section -->
<section class="slider_wrapper">
<div id="slides">
<div class="slide">
<img src="img/slider1.jpeg" alt="Nature 1" />
<h3 class="caption">Back To Nature</h3>
<blockquote class="qoutes">If there is a future, it will be Green. <cite>Petra Kelly</cite></blockquote>
</div>
</div>
</section>
<!-- End of Slider Section -->
<!-- About Section -->
<section class="about container clearfix" id="about">
<!-- About -->
<div class="about_title"><h2>About Us</h2></div>
<div class="about_list">
<ul>
<!-- list 1 -->
<li>
<h3>Study Nature</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
<a href="#"> read more <span class="arrow"> → </span> </a>
</li>
<!-- list 2 -->
<li>
<h3>Love Nature</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
<a href="#"> read more <span class="arrow"> → </span> </a>
</li>
<!-- list 3 -->
<li>
<h3>Stay Close to Nature</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
<a href="#"> read more <span class="arrow"> → </span> </a>
</li>
</ul>
</div>
</section>
<!-- End of About Section -->
<!-- Projects Section -->
<section class="projects container clearfix" id="projects">
<!-- Projects Title -->
<div class="projects_title"><h2>What We Do</h2></div>
<!-- Projects List -->
<div class="projects_list clearfix">
<ul>
<li>
<a href="#"><span class="project1"></span></a>
</li>
<li>
<a href="#"><span class="project2"></span></a>
</li>
<li>
<a href="#"> <span class="project3"></span> </a>
</li>
</ul>
</div>
</section>
<!-- End of Projects Section -->
<!-- Contact Section -->
<section class="contact" id="contact">
<div class="container">
<h3 class="contact_title">Are You Ready to Save The World?</h3>
<a href="#" class="contact_button"> Join Us NOW! </a>
</div>
</section>
<!-- End of Contact Section -->
<!-- Footer Sectioin -->
<footer class="clearfix">
<div class="container">
<!-- Copyrights -->
<div class="copyright">
<img
src="img/logo.png"
alt="
Nature"
class="footer_logo"
/>
<p>© 2018 Project Based Learning - CoderJS</p>
</div>
<div class="footer_links">
<!-- Social Media Links -->
<div class="sm columns">
<h3 class="columns_title">Meet Us At</h3>
<ul>
<li>
<a
href="#"
class="
facebook"
>Facebook</a
>
</li>
<li>
<a
href="#"
class="
github"
>Github</a
>
</li>
<li>
<a
href="#"
class="
instagram"
>Instagram</a
>
</li>
</ul>
</div>
<!-- Address -->
<div class="address columns">
<h3 class="columns_title">Address</h3>
<p>Batam Creative Hub</p>
<p></p>
<p class="address-info">
Jln. Nagoya citywalk, GF 103, Lubuk Baja Kota, Lubuk Baja, Kota
Batam, Kepulauan Riau 29444
</p>
</div>
</div>
</div>
</footer>
<!-- End of Footer Section -->
</body>
</html>