-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
113 lines (106 loc) · 4.33 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
<!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">
<title>Simplify</title>
<link href="css/reset.css" rel="stylesheet">
<!-- Main stylesheet -->
<link href="css/style.css" rel="stylesheet">
<!-- Import google font -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<!-- Modernizr -->
<script src="js/modernizr.js"></script>
<!-- Import google font via javascript -->
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Open+Sans::latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();</script>
</head>
<body>
<header class="wc-header">
<div class="wc-container">
<a id="wc-logo"><img src="css/images/logo.png" alt="Logo"/></a>
<div id="wc-nav">
<a class="wc-nav-trigger" href="#0">Menu<span></span></a>
<nav id="wc-main-nav">
<ul>
<li><a href="#section-1">Home</a></li>
<li><a href="#section-2">About</a></li>
<li><a href="#section-3">Download</a></li>
<li><a href="#section-4">Contact</a></li>
</ul>
</nav>
</div>
</div>
</header>
<section class="wc-section-bg wc-bg-1" id="section-1">
<div class="content-in">
<h1>Simplify</h1>
<h2>A free responsive, one page theme.</h2>
<h3>Created by webcreate.lk</h3>
</div>
<a href="#section-2" class="cd-scroll-down cd-img-replace">scroll down</a>
</section>
<section class="wc-section" id="section-2">
<div class="content-in">
<h2>About simplify</h2>
<p>
Simplify is a free responsive one page theme designed by webcreate.lk.
</p>
<p>
Theme includes full HTML, CSS, and custom JavaScript files
along with SASS files for easy customization. So Enjoy !
</p>
</div>
</section>
<section class="wc-section" id="section-3">
<div class="content-in">
<h3>Download simplify theme</h3>
<p>
You can download simplify theme for free from theme preview page at webcreate.lk or just by
clicking download button here.
</p>
<p><a href="#0" class="btn red">Download</a></p>
</div>
</section>
<section class="wc-section" id="section-4">
<div class="content-in">
<h3>Contact webcreate.lk</h3>
<p>
Feel free to email us to provide some feedback on our simplify theme,
give us suggestions for new templates and themes, or to just say hello!
</p>
<p>
<a href="#0">[email protected]</a>
</p>
</div>
</section>
<section id="wc-google-map">
<div id="google-container"></div>
<div id="wc-zoom-in"></div>
<div id="wc-zoom-out"></div>
<address>190 / 6 C, Weera MW, Depanama, Pannipitiya, 10230, Sri Lanka. Your copyright here.</address>
</section>
<!-- jQuery -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- When no internet load JQuery from local -->
<script>window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')</script>
<!-- Google Maps API Key - You will need to use your own API key to use the map feature -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCOddUvFUmPgP0xi51WqZmU4D-fHmNdgsw"></script>
<!-- Simplify main js -->
<script src="js/main.js"></script>
<!-- Google map functions -->
<script src="js/map.js"></script>
</body>
</html>