-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
178 lines (164 loc) · 9.09 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="true">
<title>Moderno</title>
<link rel="stylesheet" href="css/main.min.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css">
</head>
<body>
<header class = "header" style = "background-image: url('img/parallax.jpg')">
<div class="header__wrapper">
<span class="logo" style = "background-image: url('img/logo.png');"></span>
<div class="header__center">
<h2 class = "header__title">Moderno</h2>
<span class = "header__caption">Lorem ipsum dolor sit amet, consectetur adipisicing elit</span>
<span class = "header__caption">Curabituz eu welt eulla</span>
<a href="#GetInTouch" class = "header__button">Get in Touch</a>
</div>
<a href="#" class="header__humburger" id = "ShowNav"><i class="fa fa-bars" aria-hidden="true"></i></a>
</div>
<nav class="navigation">
<a href="#" class="navigation__button-close" id = "CloseNav">X</a>
<h2 class="navigation__title">Menu</h2>
<ul class="navigation__items">
<li class="navigation__item"><a href="#" class="navigation__link">Home</a></li>
<li class="navigation__item"><a href="#" class="navigation__link">Services</a></li>
<li class="navigation__item"><a href="#" class="navigation__link">Stories</a></li>
<li class="navigation__item"><a href="#" class="navigation__link">Contact</a></li>
</ul>
<div class="navigation__social-buttons">
<a href="#" class="navigation__social-button"><i class="navigation__icon fa fa-twitter"></i></a>
<a href="#" class="navigation__social-button"><i class="navigation__icon fa fa-facebook"></i></a>
</div>
</nav>
</header>
<main class = "page-main">
<div class="about-us about-us--padding">
<div class="about-us__item">
<a href="#We are creative" class="about-us__link"><i class="about-us__icon fa fa-pencil" aria-hidden="true"></i></a>
<h3 class="about-us__title">We Are Creative</h3>
<p class="about-us__caption">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
A adipisci amet atque consectetur dolores eaque est fuga fugiat hic incidunt
</p>
</div>
<div class="about-us__item">
<a href="#We have skills" class="about-us__link"><i class="about-us__icon fa fa-television" aria-hidden="true"></i></a>
<h3 class="about-us__title">We Have skills</h3>
<p class="about-us__caption">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
A adipisci amet atque consectetur dolores eaque est fuga fugiat hic incidunt
</p>
</div>
<div class="about-us__item">
<a href="#We love to help" class="about-us__link"><i class="about-us__icon fa fa-yelp" aria-hidden="true"></i></a>
<h3 class="about-us__title">We love To Help</h3>
<p class="about-us__caption">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
A adipisci amet atque consectetur dolores eaque est fuga fugiat hic incidunt
</p>
</div>
</div>
<section class="history history--background">
<h2 class="history__title">Success stories</h2>
<p class="history__caption">We do awesome work, check some of success stories so far</p>
<article class="history-project history-project--margin">
<img src="img/img_1.jpg" alt="Capture" class="history-project__img">
<div class="history-project__text-side">
<a href="#" class="history-project__close" id = "ProjectClose">X</a>
<h3 class="history-project__title">Lorem Ipsum Project</h3>
<p class="history-project__caption">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. At consectetur corporis doloremque eius eligendi, magni neque porro velit.
Ab dolore ducimus eaque est facilis, itaque laboriosam omnis perspiciatis reprehenderit ut?
</p>
<a href="#" class="history-project__button">View Project</a>
</div>
</article>
</section>
<div class="history-gallery history-gallery--margin">
<ul class="history-gallery__items">
<li class="history-gallery__item" style = "background-image: url('img/thumb_1.jpg');" >
<a class="history-gallery__link" href="FirstProject"></a>
</li>
<li class="history-gallery__item" style = "background-image: url('img/thumb_2.jpg');" >
<a class="history-gallery__link" href="SecondProject"></a>
</li>
<li class="history-gallery__item" style = "background-image: url('img/thumb_3.jpg');" >
<a class="history-gallery__link" href="ThirdProject"></a>
</li>
<li class="history-gallery__item" style = "background-image: url('img/thumb_4.jpg');" >
<a class="history-gallery__link" href="FourthProject"></a>
</li>
<li class="history-gallery__item" style = "background-image: url('img/thumb_5.jpg');" >
<a class="history-gallery__link" href="FiveProject"></a>
</li>
<li class="history-gallery__item" style = "background-image: url('img/thumb_2.jpg');" >
<a class="history-gallery__link" href="SixProject"></a>
</li>
</ul>
</div>
<section class="map">
<h2 class="map__title" id = "GetInTouch">
Get In Touch
</h2>
<p class = "map__description">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</p>
<iframe class="map__show" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d10256.965714416116!2d36.24149852155447!3d50.00682992155381!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x7ffadbdd4a3b1bb6!2z0KXQsNGA0LrRltCy0YHRjNC60LjQuSDQvdCw0YbRltC-0L3QsNC70YzQvdC40Lkg0LDQstGC0L7QvNC-0LHRltC70YzQvdC-LdC00L7RgNC-0LbQvdGW0Lkg0YPQvdGW0LLQtdGA0YHQuNGC0LXRgg!5e0!3m2!1sru!2sua!4v1488729135630"
width="70%" height="300" frameborder="0" style="border:0" allowfullscreen></iframe>
</section>
<div class="feedback">
<form class="feedback-form" action="#" method="post">
<div class="feedback-form__title">
<input class = "feedback-form__input" type="text" placeholder="Your Name">
<input class = "feedback-form__input" type="email" placeholder="Mail">
</div>
<input class = "feedback-form__input" type="text" placeholder="Subject">
<textarea class = "feedback-form__input" name="message" id="Message" style = "resize: none" cols="30" rows="10" placeholder="Input message"></textarea>
<button class="feedback-form__button">Send message</button>
</form>
<div class="feedback-contacts">
<h2 class="feedback-contacts__title">
Our Address
</h2>
<P class="feedback-contacts__info">
48596 Desert Broken Count <br>
Newark, NT 07502 <br>
United States
</P>
<h2 class="feedback-contacts__title">
Email
</h2>
<P class="feedback-contacts__info">
strangeuser@strange.com
</P>
<h2 class="feedback-contacts__title">
Phone
</h2>
<P class="feedback-contacts__info">
+00 123-456-78900
</P>
</div>
</div>
</main>
<footer class = "footer">
<div class="footer__wrapper">
<span class="footer__text">Copyright © 2017. Moderno. All Rights Reserved</span>
<div class="footer__social-buttons">
<a href="#" class="footer__social-button"><i class="footer__icon fa fa-twitter"></i></a>
<a href="#" class="footer__social-button"><i class="footer__icon fa fa-facebook"></i></a>
</div>
</div>
</footer>
<script
src="http://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src = "js/main.min.js"></script>
</body>
</html>