-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (114 loc) · 3.12 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.css">
<link rel="stylesheet" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<title>Maket</title>
</head>
<body>
<!-- Header -->
<header>
<div class="wrapper">
<!-- Logo -->
<div class="logo">
<h1><a href="">logo</a></h1>
</div>
<!-- Navigation -->
<nav>
<a href="#promo">promo</a>
<a href="#about">about</a>
<a href="#team">team</a>
<a href="" class="button">sign in</a>
</nav>
</div>
</header>
<!-- / Header -->
<!-- Main Content -->
<main>
<!-- Promo -->
<section class="promo" id="promo">
<div class="wrapper promo-content">
<h2 class="promo-h2">Our mission</h2>
<p class="promo-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut expedita recusandae repellat harum pariatur fugiat. Quo neque harum nam doloribus.</p>
</div>
</section>
<!-- / Promo -->
<!-- About -->
<section class="about" id="about">
<div class="wrapper about-content">
<h2 class="about-h2">About</h2>
<p class="about-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Doloribus earum, voluptatum iure reprehenderit quibusdam, incidunt voluptates dicta aut ullam ducimus nobis.</p>
</div>
</section>
<!-- / About -->
<!-- Team -->
<section class="team" id="team">
<div class="wrapper team-content">
<h2 class="team-h2">Team</h2>
<div class="team-details">
<div class="item">
<img src="pict/team-1.jpg" alt="">
<h3>John Doe</h3>
<p>Founder & CEO</p>
</div>
<div class="item">
<img src="pict/team-2.jpg" alt="">
<h3>John Doe</h3>
<p>Co- Founder</p>
</div>
<div class="item">
<img src="pict/team-3.jpg" alt="">
<h3>John Doe</h3>
<p>Investor</p>
</div>
</div>
<a href="" class="button button-team">Work with us</a>
</div>
</section>
<!-- / Team -->
<div class="map"></div>
</main>
<!-- / Main Content -->
<!-- Footer -->
<footer>
<div class="wrapper">
<!-- Navigation -->
<nav>
<a href="">About</a>
<a href="">FAQ</a>
<a href="">Work with us</a>
</nav>
<!-- Social Icons -->
<div class="social">
<a href="" class="mail"></a>
<a href="" class="facebook"></a>
<a href="" class="twitter"></a>
</div>
<!-- Copyright -->
<div class="copyright">
<a href="">Privacy Policy</a>
<a href="">Terms and Conditions</a>
<a href="">© Company.LLC 2014</a>
</div>
</div>
</footer>
<!-- / Footer -->
<!-- JQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Smooth Scrolling -->
<script>
$(document).ready(function(){
$('a[href^="#"], a[href^="."]').click( function() {
var scroll_el = $(this).attr('href');
if ($(scroll_el).length != 0) {
$('html, body').animate({ scrollTop: $(scroll_el).offset().top }, 500);
}
return false;
});
});
</script>
<!-- / Smooth Scrolling -->
</body>
</html>