-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
145 lines (131 loc) · 4.81 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
<!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">
<link rel="stylesheet" href="main.css">
<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<title>TestCompany</title>
</head>
<body>
<section class="header__container">
<div class="header__container-menu">
<div class="header__container-menu-logo">
<p>SPIRIT8</p>
</div>
<div class="header__container-menu-menu">
<ul class="menu">
<li><a href="#">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">services</a></li>
<li><a href="#">portfolio</a></li>
<li><a href="#">testimonials</a></li>
<li><a href="#">contact</a></li>
</ul>
</div>
</div>
<div>
<div class="header__container-start">
<div class="header__container-start-welcome">
<h3>welcome on <span>spirit8</span></h3>
<p>We are a digital agency with <b>years of experience</b> and with <b>extraordinary people</b></p>
</div>
</div>
</div>
<div class="header__container__circle">
<div class="circle" id="down" >
<i class="material-icons">keyboard_arrow_down</i>
</div>
</div>
</section>
<section class="about">
<div class="about__container">
<div class="about__container-mac">
<img src="mac.png" alt="mac" width="506" height="506">
</div>
<div class="about__container-about">
<p class="about__container-about-first">about us</p>
<p class="about__container-about-second">some words <b>about us</b></p>
<p class="about__container-about-third">We love building and rebuilding brands through our specific skills. Using colour, fonts, and illustration, we brand companies in a way they will never forget.</p>
<p class="about__container-about-list-first"><b>Mission</b> - <i>We deliver uniqueness and quality</i></p>
<p class="about__container-about-list-second"><b>Skills</b> - <i>Delivering fast and excellent results</i></p>
<p class="about__container-about-list-third"><b>Clients</b> - <i>Satisfied clients thanks to our experience</i></p>
<button class="about-button">Browse our work</button>
</div>
</div>
</section>
<section class="team">
<div class="team__container">
<div class="team__container-meet">
<p>Meet <b>our team</b></p>
</div>
</div>
<div class="team__container-all">
<div class="team__container-first">
<div class="team__container-first_circle">
<img src="icon-avatar.png" alt="avatar" width="110px" height="110px">
</div>
<div class="team__container-first_name">
<h4>Jason Statham</h4>
<p>Knife designer</p>
<p>Do not seek to change what has come before.</p>
</div>
</div>
<div class="team__container-first">
<div class="team__container-first_circle">
<img src="icon-avatar.png" alt="avatar" width="110px" height="110px">
</div>
<div class="team__container-first_name">
<h4>Jason Statham</h4>
<p>Knife designer</p>
<p>Do not seek to change what has come before.</p>
</div>
</div>
<div class="team__container-first">
<div class="team__container-first_circle">
<img src="icon-avatar.png" alt="avatar" width="110px" height="110px">
</div>
<div class="team__container-first_name">
<h4>Jason Statham</h4>
<p>Knife designer</p>
<p>Do not seek to change what has come before.</p>
</div>
</div>
<div class="team__container-first">
<div class="team__container-first_circle">
<img src="icon-avatar.png" alt="avatar" width="110px" height="110px">
</div>
<div class="team__container-first_name">
<h4>Jason Statham</h4>
<p>Knife designer</p>
<p>Do not seek to change what has come before.</p>
</div>
</div>
</div>
</section>
<section class="clients">
<div class="clients__mainContainer">
<div class="clients__mainContainer-title">
<p>some of <b>our clients</b></p>
</div>
<div class="clients__mainContainer-clients">
<img src="chanel.png" alt="chanel">
<img src="zara.png" alt="zara">
<img src="gue.png" alt="guerlain">
<img src="lancome.png" alt="lancome">
<img src="lacoste.png" alt="lacoste">
</div>
</div>
</section>
<script>
let click = document.getElementById('down');
click.addEventListener("click",fun);
function fun() {
window.scroll({ top: 630, behavior: 'smooth' });
}
</script>
</body>
</html>