-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
151 lines (129 loc) · 4.41 KB
/
index.html
File metadata and controls
151 lines (129 loc) · 4.41 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
<!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">
<title>Golden</title>
<link rel="stylesheet" href="css/main.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$(window).scroll(function() {
if($(this).scrollTop() != 0) {
$('#toTop').fadeIn();
} else {
$('#toTop').fadeOut();
}
});
$('#toTop').click(function() {
$('body,html').animate({scrollTop:0},800);
});
});
</script>
</head>
<body>
<header>
<div class="container">
<div class="heading clearfix">
<nav>
<ul class="menu">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#services">Services</a>
</li>
<li>
<a href="#portfolio">Portfolio</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#">Contsct</a>
</li>
</ul>
</nav>
<img src="img/logo.png" alt="Golden" class="logo">
</div>
<div class="titles">
<div class="titles__first">
Welcome To Our Studio!
</div>
<h1>
It’s nice to Meet you
</h1>
</div>
<a class="button" href="#">Tell Me More</a>
</div>
</header>
<section id="services">
<div class="container">
<div class="title">
<h2>
Services
</h2>
<p>
Proin iaculis purus consequat sem cure
</p>
</div>
<div class="services clearfix">
<div class="services__item">
<img src="img/icon1.png" alt="Услуга">
<h3>E-Commerce</h3>
<p>
Proin iaculis purus consequat sem cure
digni ssim. Donec porttitora entum suscipit
aenean rhoncus posuere odio in tincidunt.
</p>
</div>
<div class="services__item">
<img src="img/icon2.png" alt="Услуга">
<h3>Responsive Web</h3>
<p>
Proin iaculis purus consequat sem cure
digni ssim. Donec porttitora entum suscipit
aenean rhoncus posuere odio in tincidunt.
</p>
</div>
<div class="services__item">
<img src="img/icon3.png" alt="Услуга">
<h3>Web Security</h3>
<p>
Proin iaculis purus consequat sem cure
digni ssim. Donec porttitora entum suscipit
aenean rhoncus posuere odio in tincidunt.
</p>
</div>
</div>
</div>
</section>
<section id="portfolio">
<div class="container">
<div class="title">
<h2>
Our portfolio
</h2>
<p>
Proin iaculis purus consequat sem cure.
</p>
</div>
<div class="works clearfix"> <!--clearfix задається всюди де є float-->
<img src="img/img1.jpg" alt="Работа">
<img src="img/img2.jpg" alt="Работа">
<img src="img/img3.jpg" alt="Работа">
</div>
</div>
</section>
<section id="about">
<div class="container">
</div>
</section>
<footer>
<div class="container">
</div>
</footer>
<DIV ID = "toTop" > ^ Наверх </ DIV >
</body>
</html>